Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

How to? Compare file timestamps accross different file systems...

May
855
0
I am using @FileAge to compare file time stamps where the files are on different file systems. NTFS volume time stamps have a 100 nanosecond resolution whereas a FAT file system has a 2 second resolution. How do I go about converting an NTFS file age to a 2 second resolution value?
 
It seems a standard rounding computation is doing the trick:
Code:
%@eval[ ( %@fileage[file] \ 20000000 ) * 20000000 ]
(20000000 = 2s / 100ns)
(tested with a FAT diskette)
 

Similar threads

Back
Top