gpt4 book ai didi

c# - 从服务器收到文件后,如何在 C# 中 move 文件并重命名它?

转载 作者:行者123 更新时间:2023-12-02 21:45:58 25 4
gpt4 key购买 nike

我正在尝试 move 并重命名从 TCP 服务器收到的文件。

我的 move 和重命名代码:

 *//My sourcePath*
static string myServerfile = @"C:\Users\me\Documents\file_client\bin\Debug\test1.txt";
*//My destinationPath*
static string myFile = @"C:\test\inbox\JobStart.txt";

收到文件后,我这样做:

          fs.Close ();
serverStream.Close ();
File.Move(myServerfile, myFile);
Console.WriteLine("Moved");
}
catch (Exception ex)
{
Console.WriteLine ("Cannot be DONE!");
}

但是当它到达 File.Move(myServerfile, myfile1);

时,它总是抛出异常“无法完成”

我尝试过这个:Console.WriteLine(ex.ToString());

结果:System.IO.IOException:文件已存在,无法创建。

enter image description here

我做错了什么?

最佳答案

似乎您的目标文件夹中已经有 JobStart.txt 文件。

您可以尝试检查它是否存在,然后尝试replace或删除该文件然后 move 。

if (File.Exists(myFile))
{
File.Delete(myFile);
}
File.Move(myServerfile, myFile);

关于c# - 从服务器收到文件后,如何在 C# 中 move 文件并重命名它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19512851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com