Deleting Files from Access

J

Justin

I load data into my access db from a .csv file. I want to delete the file
after loading the data. What is the proper vb code. Any help will be
appreciated.
 
R

Rick Brandt

Justin said:
I load data into my access db from a .csv file. I want to delete the file
after loading the data. What is the proper vb code. Any help will be
appreciated.

Kill "Path to file"
 
D

Douglas J. Steele

Rick meant that you put the complete path to the file after the word Kill to
delete the file.
 
J

Justin

Sorry, I'm alittle slow tonight. I thought of that after my reply. I tried
it and it works great. Thnks to all for the input and clarification.
 
Top