Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use File::Find;
    ...
    
    find (\&finda, "/abc/xyz");
    find (\&findb, "/pqr");
    
  2. or download this
    In finda, /abc/xyz           # a folder
    In finda, /abc/xyz/file1     # a file
    In findb, /pqr               # a folder
    In findb, /pqr/file2         # a file