File static class
File static class can be easily used for this purpose.
File.Copy(@"sourcePath\abc.txt", @"destinationPath\abc.txt");
File.Copy(@"sourcePath\abc.txt", @"destinationPath\xyz.txt");
Remark: By this method, file is copied, meaning that it w...