在解决方案中查找文件

发布于 2024-12-13 16:31:08 字数 393 浏览 0 评论 0原文

我有一个 xml 文件,例如 examplexml.xml,并将其存储在名为 SampleFolder 的文件夹中。层次结构如下:

解决方案->项目->SampleFolder->samplexml.xml。假设我在项目中一个名为 TestClass.cs 的类中,如何读取字符串中 xml 文件的所有内容。

让我们说,

[TestClass]
public class TestClass
{
   [TestMethod]
   public void TestMethod()
   {
       //TODO: Read all the contents of the xml file in a string.
   }

}

我该怎么做?

I have an xml file say samplexml.xml and I have stored it in a folder called SampleFolder. Here how the Hierarchy is:

Solution->Project->SampleFolder->samplexml.xml. Suppose I am in a class called TestClass.cs that is in the project, How can I read all the contents of the xml file in a string.

Let's say,

[TestClass]
public class TestClass
{
   [TestMethod]
   public void TestMethod()
   {
       //TODO: Read all the contents of the xml file in a string.
   }

}

How do I do this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坦然微笑 2024-12-20 16:31:08

尝试:

string exePath = Path.GetDirectory(Assembly.GetExecutingAssembly().Location);
string xmlPath = Path.Combine(exePath, "SampleFolder");
string fileName = Path.Combine(xmlPath, "SampleXML.xml");

记住你应该设置编译器将 xml 文件复制到目标目录

Try:

string exePath = Path.GetDirectory(Assembly.GetExecutingAssembly().Location);
string xmlPath = Path.Combine(exePath, "SampleFolder");
string fileName = Path.Combine(xmlPath, "SampleXML.xml");

Remember you should set compiler to copy xml file to destination dir

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文