C#File.move
时间: 2023-08-29 07:09:03 浏览: 265
你好!C#中的`File.Move`方法用于将一个文件移动到指定的位置。它接受两个参数,第一个参数是要移动的文件的路径和名称,第二个参数是目标位置的路径和名称。
以下是一个示例代码,演示如何使用`File.Move`方法来移动文件:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
string sourceFilePath = "C:\\path\\to\\source\\file.txt";
string destinationFilePath = "C:\\path\\to\\destination\\file.txt";
try
{
// 移动文件
File.Move(sourceFilePath, destinationFilePath);
Console.WriteLine("文件移动成功!");
}
catch (IOException ex)
{
Console.WriteLine("发生错误:" + ex.Message);
}
}
}
```
在上面的示例中,我们指定了要移动的源文件路径和目标文件路径。然后,使用`File.Move`方法将源文件移动到目标位置。如果移动成功,将输出"文件移动成功!";如果发生错误,将输出错误消息。
希望这可以帮助到你!如果你有更多问题,请随时问我。
阅读全文