in reply to Re: Re: Faster Method for Gathering Data
in thread Faster Method for Gathering Data
Oh, and welcome to the monastery!use Benchmark; $t0 = new Benchmark; # ... your code here ... # system("dir", "/s", "path_to_root_sgml_dir\\*.sgml"); $t1 = new Benchmark; $td = timediff($t1, $t0); print "the code took:",timestr($td),"\n";
|
|---|