Help for this page

Select Code to Download


  1. or download this
    readdir() attempted on invalid dirhandle  at C:/Perl/site/lib/File/Dir
    +Walk.pm line 100.
    closedir() attempted on invalid dirhandle  at C:/Perl/site/lib/File/Di
    +rWalk.pm line 117.
    
  2. or download this
            opendir my $dirh, $path || return FAILED;
            my @dir_contents = readdir $dirh;
    ...
            }
    
            closedir $dirh;
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    $walker->onDirEnter(\&doDir);
    $walker->walk($currdir);
    printStats();