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.
FileInfo.LastWriteTime
FileInfo.LastWriteTimeUtc
i want to have a time stamp for logs on a Windows Mobile project. The accuracy must be in the range a hundred milliseconds at least. However my call to DateTime.Now returns a DateTime object with the Millisecond property …
I want to convert a C# DateTime to "YYYYMMDDHHMMSS" format. But I don't find a built in method to get this format? Any comments?
How do you convert a string such as 2009-05-08 14:40:52,531 into a DateTime?