in reply to Re: Re: Directory contents
in thread Directory contents

Then File::Find::Rule should do the trick e.g
use File::Find::Rule; my @files = find(file => in => \@ARGV);
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: Re: Re: Directory contents
by qadwjoh (Scribe) on Jan 29, 2004 at 10:34 UTC
    This works great thanks.

    Is there any way to get it to only list files that exist and skip those that don't without an error message?

    A