Hi,
I currently use the following code for an Access97 application to backup the frontend and backend files:
'copy database to predefined directory
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile dbCopyLoc & "\*.mdb", archivePath, True
Set fso = Nothing...