Help for this page

Select Code to Download


  1. or download this
    if ($depth == 0) {
        next if $_ ne '.'; # <-- line 116
        $_ = $directory;
    }
    
  2. or download this
    if ($depth == 0) {
        next if $_ eq '.';
        $_ = $directory;
    }