Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    use strict;
    ...
        find( sub {print "$_ target found\n" if -f and /\Q$srcfile\E/;},
             'D:\Projects\perl\targ');
    }