Help for this page

Select Code to Download


  1. or download this
    mkdir("c:\\automation")
       or die("Unable to create automation directory: $!\n");
    
  2. or download this
    use File::Path qw( mkpath );
    
    ...
    if ($@) {
       die("Unable to create automation directory: $@\n");
    }