Help for this page

Select Code to Download


  1. or download this
    opendir my $dirh, $path || return FAILED;
    
  2. or download this
    opendir my $dirh, $path or return FAILED;
    
  3. or download this
    opendir(my $dirh, $path) || return FAILED;
    
  4. or download this
    t/1.t .. 1/3 readdir() attempted on invalid dirhandle  at /Users/ken/.
    +cpan/build/File-DirWalk-0.3-mt7jiA/blib/lib/File/DirWalk.pm line 100.
    closedir() attempted on invalid dirhandle  at /Users/ken/.cpan/build/F
    +ile-DirWalk-0.3-mt7jiA/blib/lib/File/DirWalk.pm line 117.
    t/1.t .. ok   
    All tests successful.
    
  5. or download this
    $currdir = dir(split("/[\\\/]", $currdir));