Copying Files from Directory to Directory

D

DP

In Access 2003, is there a way to copy a data file from
one directory to another? I have a query of listing file
names (such as a.txt, c.txt, e.txt, etc.) which I want to
put into another directory to do others things to.
 
A

Adrian Tofan

Use this command:
FileCopy source, destination

(source/destination include path+filename)
 
T

Tom Wickerath

To add to Adrian's answer, you'll need to verify that your sandbox setting is either 0 or 2 in
order to use the FileCopy function.

See http://support.microsoft.com/?id=239482 for more information.


Tom
_______________________________________

Use this command:
FileCopy source, destination

(source/destination include path+filename)

_______________________________________


In Access 2003, is there a way to copy a data file from
one directory to another? I have a query of listing file
names (such as a.txt, c.txt, e.txt, etc.) which I want to
put into another directory to do others things to.
 
Top