String Parsing,xml文件的完整路径,c#

时间:2013-05-16 13:08:51

标签: c# asp.net xml xml-parsing

我需要一些帮助。

我想从xml文件加载数据,但是我收到一条错误消息: “无法找到文件'C:\ Users \ someuser \ Desktop \ MyApp \ MyApp \ MyData.xml'。”

我的部分代码是:

string dataPath =AppDomain.CurrentDomain.BaseDirectory + "MyData.xml";
XDocument xmlItems = XDocument.Load(dataPath);

在调试中,我看到dataPath具有以下值:

"C:\\Users\\someuser\\Desktop\\MyApp\\MyApp\\MyData.xml"

我需要

"C:\Users\someuser\Desktop\MyApp\MyApp\MyData.xml"

当我使用xml文件的完整路径时,它可以正常工作。

0 个答案:

没有答案