Hi how do I:
- Compare files in 2 diffrent directories
- Copy a file from 1 dirtectory to another
Thanks for any help, and have a merry christmas
Printable View
Hi how do I:
- Compare files in 2 diffrent directories
- Copy a file from 1 dirtectory to another
Thanks for any help, and have a merry christmas
We had a discussion about file comparasing in this thread: http://www.vbforums.com/showthread.p...hreadid=125193
To copy a file simply use the FileCopy statement:Best regardsVB Code:
FileCopy "c:\OneFolder\TheFile.txt", "c:\OtherFolder\TheNewFileName.txt"
thanks