Forgot to add my little code snippet
VB Code:
  1. Private Sub Command1_Click()
  2.     Const File1 = "C:\Junk.doc"
  3.     Const File2 = "E:\Junk.doc"
  4.  
  5.     FileCopy File1, File2
  6.     Debug.Print File1 & " "; FileDateTime(File1)
  7.     Debug.Print File2 & " "; FileDateTime(File2)
  8. End Sub
  9.  
  10. ' C:\Junk.doc 2/14/2006 7:52:30 PM
  11. ' E:\Junk.doc 2/14/2006 7:52:32 PM