以下代码是我试图用来连接到外部服务器并进入AppData文件夹中的子目录的代码。
string targetPath = @"\\externalServer\" + Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Litera\\Customize";
单步执行该程序时,它出现在第16行,但没有指出“不支持给定路径的格式”。但是,destFile显示“ \\ externalServer \ C:\ Users \ username \ AppData \ Roaming \ Litera \ Customize \ Customize.xml”。对我来说,程序正在准确地找到我想要的路径。有人可以帮我解决这个问题吗?
File.Copy(sourceFile, destFile, true);