I understand that the FAT file system stores its timestamps for files (change date, etc.) with 2 second granularity, and NTFS stores them with 100 ns granularity.
I am using VBScript with FileSystemObject to display file information. The file.DateLastModified function shows me a date accurate to 1 second (in NTFS).
Is there a way to show timestamps with precision according to the internal granularity of NTFS storage. I present something like 8/9/2010 14: 40: 30,1234567
And if not with VBScript / FileSystemObject, will there be another way?
source share