从代码访问asp临时目录

时间:2016-04-27 00:54:49

标签: asp.net asp.net-mvc iis

在Web App运行时是否有任何方法可以检索tempdirectory的值?方法我指的是任何API(例如Path.GetTempPath())

<system.web>
    <compilation debug="true" tempDirectory="some path" targetFramework="4.6" />
    <httpRuntime targetFramework="4.5" />
  </system.web>

我想避免直接阅读配置文件。

1 个答案:

答案 0 :(得分:0)

你能不能只读取System.Web.Configuration命名空间中的configSection.TempDirectory?

MSDN中记录了这一点:https://msdn.microsoft.com/en-us/library/system.web.configuration.compilationsection.tempdirectory%28v=vs.110%29.aspx