backup files

Bryan

Well-known member
Joined
Jun 17, 2002
Messages
49
Location
Cedar Hill, TX
I am designing an application that updates some text files at the end of each month as part of a month end procedure for an accounting system. I am wanting to backup up the current text files in case 1) there is a problem in the application and 2) they, for God knows what reason, have to restore the files.

So what I need to know is how do I do this. Are there just basic copy file commands, create new directory commands within VB.NET that makes this an easy thing to do? Or do I need something else?
 
The methods of System.IO.File and System.IO.Directory should be ample for what you need.
 
Back
Top