Folder Copy

lothos12345

Well-known member
Joined
May 2, 2002
Messages
294
Location
Texas
Is there away in VB.NET to copy over an entire folder the has easy as file copying is? Any help given would be greatly appreiciated.
 
No, you have to copy the files one by one...
The System.IO.Directory Namespace only have the Move option!

If we think, what the OS does when copying a dir its exacly that, create a new folder on the new location and copy the files one by one to that same new location.

You just have to implement this...

Alex :D
 
Back
Top