Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试请求我的应用程序的路径以在其上保存新文件,我知道我应该这样做:
Dim mypath As String = Request.PhysicalApplicationPath
但由于某种原因,我什至找不到 Request 类。
我读到它属于 System.Web 命名空间,我添加了它但仍然无法正常工作。有任何想法吗?
您可以使用Server.MapPath("~/logfiles")获取网页所在目录中子目录日志文件的路径。
Server.MapPath("~/logfiles")
这是在实际的 ASP.NET 网页中还是在处理程序中?
编辑
另一种方法是使用Path.Combine(HttpRuntime.AppDomainAppPath, "logfiles")
Path.Combine(HttpRuntime.AppDomainAppPath, "logfiles")