Christian72DD
Member
Is there any DLL to get the date/time a file was created/modified?I have to compare wich one is the newer file.
Dim dt(2) ' in globals
...
DateFormat = "dd/mm/yyyy" ' for those of us for whom the defaults fail
TimeFormat = "hh:mm:ss"
dt() = StrSplit(info(4)," ")
d = DateParse(dt(0)) + TimeParse(dt(1)) Mod cTicksperday
' "mod" because the current date is included by TimeParse
There is no problem in doing this.Is there no chance to read the file info of the program that uses this .dll?