/ Published in: Perl
URL: http://docstore.mik.ua/orelly/perl/cookbook/ch09_08.htm
Expand |
Embed | Plain Text
use File::Find; @DIRLIST ="C\:\\Downloads\\"; sub process_file { # do whatever; print "$File::Find::name\n"; } find(\&process_file, @DIRLIST);
You need to login to post a comment.
