当我尝试将文件从一个位置复制到另一个位置时,我得到一个错误,只有当文件已经存在于目标中时。尽管将覆盖标志设置为 true,但仍会发生这种情况。
我没有任何线索。这是代码。
System.IO.File.Copy(source, destination, true);// goes fine as the destination file is not present
System.IO.File.Copy(source, destination, true);// Throws the exception
//"Access to the path 'C:\\Program Files (x86)\\testapp\\map\\sometext.txt' is denied."
请指导。
谢谢苏尼尔