I need to compare idFile's and idBFile's modified dates so idFile will be copied after 32 days. I tried....
idFile = oFile.DateLastModified
idBFile = oFile.DateLastModified
If DateDiff ("d", idFile, Now) >=32 DateDiff ("d", idBfile, Now) Then
oFSO.CopyFile NotesID, "C:\NotesBackup\"
End If...