gpt4 book ai didi

c# - 我需要互相交换 2 个文件 C#

转载 作者:太空宇宙 更新时间:2023-11-03 19:16:08 24 4
gpt4 key购买 nike

我正在尝试相互交换 2 个文件。我正在尝试这样做,但它不起作用。文件正在替换,但备份文件未创建。请问您还有其他解决方案吗?

File.Replace(newLocation,defualtSource, newLocation);

最佳答案

File.Move("file1.txt", "temp.txt");
File.Move("file2.txt", "file1.txt");
File.Move("temp.txt", "file2.txt");

为什么 Replace 不起作用,但是我不明白。你确定你用对了吗?

关于c# - 我需要互相交换 2 个文件 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16544034/

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