如何使用Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)连接到外部服务器

时间:2019-02-28 19:09:10

标签: c# environment-variables

以下代码是我试图用来连接到外部服务器并进入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);

0 个答案:

没有答案