我从路径加载 xml 时遇到问题,因为在我的 pc(和其他)上映射了路径的一部分:这是我从数据库中获得的路径:
\serverName\files\System\Appldata\Application\3_5\TEST\Program\Version.xml
但在我的电脑上,路径如下所示:
Y:\Application\3_5\TEST\Program
这是代码:
var path = new DirectoryInfo(x.LocationName+@"\"+x.FolderName);
var doc = new XmlDocument();
//Loading the file
doc.Load(path.FullName + @"\Version.xml");
有没有办法解决这个问题?