I'd like to get the last modified date of a file and compare it to the system date. So far, I've only been able to come up with FileDateTime and Now functions, which includes the time. But I don't want the time included. Are there any other functions that I can use or is there a way for me to trim off the time?
Dim FileDate, Today
FileDate = FileDateTime(Source)
Today = Now
Dim FileDate, Today
FileDate = FileDateTime(Source)
Today = Now