Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            search_dir($entry) if -d $entry;
        }
    }
    
  2. or download this
            print "$entry is a file \n" if -f $entry;
            print "$entry is a dir \n" and search_dir($entry) if -d $entry
    +;