On 29 Mar, S E wrote:

> But, due to the naming conventions (or lack of) the only way to find 
> those find the files that have not been processed is to look for files 
> without a .txt in the file name. Is there a modification that I can 
> make to the below to achieve that?

>      print "$File::Find::name\n" if ( m/txt/ ); 

print $File::Find::name, "\n" unless /\.txt^/;

-- 
Steven Schubiger 
  <[EMAIL PROTECTED]>

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to