Hello
I am using File::Find to find files located at a $dir directory,
however it goes through all subdirectories. I mean I don't want
to search recursively.
Also which module you recommend for search and print through the
files that File::Find will find.
Thanks for help
Adam
Hi Jeff
Jeff wrote:
> I am attempting to use the File::Find module to go through all directories and
> subdirectories
> and preform a search and replace function. I am simply opening each file and line
> by line
> comparing to an input string parameter. If I find it, I replace
I am attempting to use the File::Find module to go through all directories and
subdirectories and preform a search and replace function. I am simply opening each
file and line by line comparing to an input string parameter. If I find it, I replace
with the input replace string, and keep on
Please ignore this post. This was meant for the perl-beginners list. My
apologies.
--
> -Original Message-
> From: Kipp, James
> Sent: Friday, March 07, 2003 1:57 PM
> To: [EMAIL PROTECTED]
> Subject: Help with File::Find
>
--
To unsubscribe, e-mail: [EMAIL PROTECT
Hi
Is there a way to get File::Find to TOTALLY ignore a directory?? See
comments in code for what I mean:
find ( \&wanted, 'f:/users/user1');
sub wanted
{
## HERE: even though it returns when it sees a dir called
# with Profile, it comes right back to where