Help for this page

Select Code to Download


  1. or download this
     ...
     use File::Spec;
    ...
     sub check_file{
      -f && push ... , File::Spec->canonpath($File::Find::name);
     }
    
  2. or download this
    ...
    use Path::Tiny;
    ...
    sub check_file{
      -f && push ... , path($File::Find::name)->canonpath});
    }