Copy file as

L

Luis

Hello.
I have an Access 2003 db that uses a .txt file to create a table. The
original file is a .xml file, but i need to save it as .txt file in order to
import the file correctly.
How can i programmatically save the .xml file as .txt ?

Thanks.
 
O

Ofer

Use the fileCopy Command

FileCopy "Source + Name" , "Location + name"

FileCopy "c:\FileName.xml","c:\FileName.txt"
 
Top