Hi,
i need to copy some text files from one directory to another.
Anybody got any pointers?
Thanks
Nick
Printable View
Hi,
i need to copy some text files from one directory to another.
Anybody got any pointers?
Thanks
Nick
Use the static method in the File class .
VB Code:
IO.File.Copy(sourcefile, destinationfile)
thanks Pirate!