gpt4 book ai didi

asp.net - 如何使用c#访问web config中的文件夹路径

转载 作者:行者123 更新时间:2023-12-05 01:13:45 24 4
gpt4 key购买 nike

如何使用 C# 代码从 web.config 访问文件夹路径。这是一个示例代码。

如何将此路径放入 web 配置 C:\\whatever\\Data\\sample.xml

我必须从网络配置中读取这条路径。

string folderpath = ConfigurationSettings.AppSettings["path"].ToString();

using (XmlWriter xw = XmlWriter.Create(folderpath, new XmlWriterSettings { Indent = false }))

请帮忙......

最佳答案

下面是一些示例代码,应该对您有所帮助

这会进入您的 web.config。

<configuration>
<appSettings>
<add key="myFilePath" value="C:\\whatever\\Data\\sample.xml"/>
</appSettings>
</configuration>

这就是你阅读它的方式:

path = System.Web.Configuration.WebConfigurationManager.AppSettings["myFilePath"].ToString();

关于asp.net - 如何使用c#访问web config中的文件夹路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10827870/

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