📜  移动文件 c# 代码示例

📅  最后修改于: 2022-03-11 14:48:52.981000             🧑  作者: Mango

代码示例1
// Move the file.
//File.Move(from,to)
File.Move(@"c:\temp\MyTest.txt", @"c:\temp2\MyTest.txt");