copy opened access database file

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

How can I copy an opened access database file using VBA?
Can it be done?
I am using the filecopy command. However it will not work
with an open database base that is locked or in use by a
user.
 
While there are techniques that will let you copy an open file (using FSO,
for instance), it's not a good idea. The resulting copy could have internal
inconsistencies which will lead to corruption.
 
Back
Top