c# to move files code example
Example: move file c#
// Move the file.
//File.Move(from,to)
File.Move(@"c:\temp\MyTest.txt", @"c:\temp2\MyTest.txt");
// Move the file.
//File.Move(from,to)
File.Move(@"c:\temp\MyTest.txt", @"c:\temp2\MyTest.txt");