Re: File::Find

2006-11-27 Thread Perl
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

Re: File::Find

2003-04-03 Thread Rob Dixon
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

File::Find

2003-04-01 Thread Jeff
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

RE: Help with File::Find

2003-03-07 Thread Kipp, James
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

Help with File::Find

2003-03-07 Thread Kipp, James
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