gpt4 book ai didi

c# - 跳过副本上的重复文件

转载 作者:太空宇宙 更新时间:2023-11-03 20:01:47 25 4
gpt4 key购买 nike

我正在将文件从一个文件夹移动到另一个文件夹 destination1destination2 但是如果 destination2 已经有 destination1 的文件副本我想简单地跳过并继续复制过程而不是覆盖,这将需要更长的过程。我已经尝试过:FileSystem.CopyFile(destination1,destination2, true);这将覆盖文件。无论如何我可以得到一些帮助来完成这个。

最佳答案

您可以使用 File.Exists检查文件是否已经存在的方法:

if(!File.Exists(destination2))
{
// copy file
}

关于c# - 跳过副本上的重复文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27300581/

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