in reply to File::Find on Win32 - basic problem/question
and it doesn't do a thing when $dir is set to 'c:/'.my $dir = 'c:/windows'; use File::Find (); File::Find::find( {wanted => \&wanted}, $dir ); sub wanted { print "$File::Find::name\n" if /\.ini\z/s; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: File::Find on Win32 - basic problem/question
by roik (Scribe) on Oct 03, 2003 at 12:59 UTC |