I look at System.IO.File.Move
, "move" the file to a new name.
System.IO.File.Move("oldfilename", "newfilename");
But it not enough for me to using this method.
Infact I want to recursively copy a folder and all of it's subfolders into a new path and change name of these file. anyone could take me a pieces of code?