Hi there,
I am trying to write a script that lets me retreive the modified details of a file on a win2000 system, i would like to keep it as simple as possible, i have tried examples on the net but they are unix and they don't seem to work, this is the closes i have come to getting it to work
use File::stat;
@sta=stat($_);
@date= localtime(@sta[8]);
printf("%d-%d-%d\n",$date[4]+1,$date[3],$date[5]+1900);