Help for this page

Select Code to Download


  1. or download this
        opendir MYDIR, ("c:/documents\ and\ settings/username/desktop/perf
    +_analyzer");
        print "Path:\n$path\n";
    ...
        print "File: ", $file, "\n";
    
    }
    
  2. or download this
    $path = `cd`; # I am in c:/documents\ and\ settings/username/desktop/p
    +erf_analyzer
        $path=~s/\\/\//g;
    ...
        print "File: ", $file, "\n";
    
    }