in reply to Why doesnt the string returned by $File::Find::name find point to files

Presumable those a directories (folders). If you want to skip directories, you can start your subroutine like this:
sub process { return if -d $_; # ... then the rest of your function
  • Comment on Re: Why doesnt the string returned by $File::Find::name find point to files
  • Download Code