K
Keith Smith
I would like to get the last run date of a file called "scale.txt". How
would I do that?
would I do that?
FileInfo MyFile as new FileInfo("c:\\scale.txt") ;
string Staccess = MyFile.LastAccessTime.ToString() ;
string Strcreation = MyFile.creationTime.ToString();
string Strmodified = MyFile.modifiedTime.ToString();
Hope this helps
Yonas