Help for this page

Select Code to Download


  1. or download this
    sub createDir {
        my $dirName = shift;
    ...
        }
        mkdir $dirName or return $!;
    }
    
  2. or download this
    mkdir $path or die "Can't mkdir $path: $!";