I am using IO to copy files, and would like to use it to copy folders. Is there a simple way to copy a folder and all the contents within it? I am using VB.NET.
I think you're going to have to use the DirectoryInfo.GetFiles() method
to retrieve a list of files in your source folder and then copy them one by
one using File.Copy().
David
Josh said:
I am using IO to copy files, and would like to use it to copy folders. Is
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.