File.Move
In order to move a file from one location to another, one simple line of code can achieve this:
File.Move(@"C:\TemporaryFile.txt", @"C:\TemporaryFiles\TemporaryFile.txt");
However, there are many things that could go wrong with this simple operation. For instance, wh...