I make a file in PC, and I want to transfer it to a PPC (Windows Mobile).
How can I get the modified date of this file?
(I need it on Windows Mobile.)
I make a file in PC, and I want to transfer it to a PPC (Windows Mobile).
How can I get the modified date of this file?
(I need it on Windows Mobile.)
FileInfo.LastWriteTime
and
FileInfo.LastWriteTimeUtc
should register this information.
Try This.
FileInfo fileInfo = new FileInfo("path");
var created = fileInfo.CreationTime; //File Creation
var lastmodified = fileInfo.LastWriteTime;//File Modification