http://qs321.pair.com?node_id=187099


in reply to Re: checking for a file
in thread checking for a file

I'd rather go with
if(-f "/bin/do/foo/$targetFile") { print "is there!\n"; } else { print "someone stoled it...\n"; }
to check if it's actually a file (that exists), as the -e may also return true on a directory.

Replies are listed 'Best First'.
Re: Re: Re: checking for a file
by splitOnce (Acolyte) on Aug 02, 2002 at 14:48 UTC
    Thanks all , I was able to figure it out with the -f ,, thank you again