gpt4 book ai didi

c# - 使用 C# 创建 XML 文件

转载 作者:太空宇宙 更新时间:2023-11-03 17:16:31 32 4
gpt4 key购买 nike

请给我一个将 XML 文件保存到使用 C# 创建的应用程序的当前安装目录的方法。

最佳答案

  1. 创建 XML 文件:最简单的方法是创建和填充 XmlDocument 或 XDocument 对象。

  2. 保存到安装目录:使用

   string path = System.IO.Path.GetDirectoryName(Application.ExecutablePath);     string file = System.IO.Path.Combine(pathm, "myfile.xml");

But you do know that the application's folder isn't the best place to store a file, right?

Edit:

Some comments mention Isolated Storage, but that is overkill. The best way to store data is to use the appropriate DataPath. That is different under various versions of Windows, but this always works:

string path = 
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);

Environment.SpecialFolder 枚举中还有一些其他值,请看一下。

关于c# - 使用 C# 创建 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1417306/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com