Title: RE: get the complete path to a file
my $file_path = qx|whereis FILE|;
Ronald Mundell
Support & Maintenance
Nedbank Ltd.
105 West
BG3
881-3751(011)
083407
-Original Message-
From: Olaf Seywald [mailto:[EMAIL PROTECTED]]
Sent: 27 March 2003 09:12
To: [EMAIL PROTE
Olaf Seywald wrote:
> Hello,
>
> I want to "find" (like in unix) files with the complete path. How can
> I do this.
>
Here is a starting portion for you:
#!perl -w
use File::Find;
# calls wanted() for each file found
find(\&wanted, 'topdirectoryyouwanttostartat');
sub wanted
{
# c