> > Script purpose:
> > I am trying to search an extremely large mounted dir on NT and find
> > the location of any file or dir that starts with a certain string
> > that is given on command line.
> > 
> > Problem:
> > File::Find::find({wanted => \&wanted}, 'e:\\');
> > There is something about this line that is just not working.  I can
> > enter a specific directory, such as 'e:\\foobar' and get the results
> > that I desire.  However if I leave it as it is in the script, the
> > file does not display.  I also get an opendir() error entering a
> > certain dir that does not allow the script to complete.

I'd try 

        File::Find::find({wanted => \&wanted}, 'e:\\.');

Jenda
=========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz 
==========
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to