I am trying to Copy a Folder that consist of many files to another folder with a new Name.
I know how to do with files but if I write:
System::IO:: Directory:: I cant find any ::Copy Members here.
Is it possible to Copy a folder "C:\\Folder1" and at the same time rename that folder to "C:\\Folder2" that also will consist the files inside the folder.
For Files I do like this, Is Copy with folders very different ?
System::IO::File::Copy("C:\\TextFile1.txt", "C:\\TextFile2.txt");