Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w # force taint checks, and print warnings
    use strict;
    ...
        return if -f $File::Find::name; # This is success - the file exist
        print ">$File::Find::name< is not a file or was not found\n";
    }
    
  2. or download this
    #!/usr/local/bin/perl -w # force taint checks, and print warnings
    use strict;
    ...
         # return if -e  $File::Find::name;
        print ">$File::Find::name  < is not a file or was not found\n";
    }
    
  3. or download this
    #!/usr/local/bin/perl -w # force taint checks, and print warnings
    use strict;
    ...
    if ( -f $_) {   print  "This is success - the file   $_  exist\n"};
    
    }