Help for this page

Select Code to Download


  1. or download this
                       -e  File exists.
                       -z  File has zero size (is empty).
                       -s  File has nonzero size (returns size in bytes).
    ...
    
                       -T  File is an ASCII text file.
                       -B  File is a "binary" file (opposite of -T).
    
  2. or download this
    if (-f $my_file)
    {
         print "Thanks for not deleting my config file $my_file\n";
    ...
    {
         print "I'll bet you think you're funny.\n";
    }