windows file copy utility

RonR

Well-known member
Joined
Nov 23, 2007
Messages
82
Programming Experience
5-10
how do i access the windows file copy utility?

in vb 6 it was: SHFileoperation
 
i never did vb6.. but

is it like copying a textfile?

to do so, it is done using something like:

VB.NET:
IO.File.Copy("C:\textFile.txt", "C:\TheCopy2.txt")
 
Don't forget to try two things:

My.Computer.FileSystem <look here>

The Snippets that you can access by right-clicking in a code document offers tons of nice code already done for you.
 
Back
Top