20

当我需要从我的网络服务器上的目录中删除一些图像文件时,我有一些代码可以正常工作:

Dim ImageURL As String = dsImages.Tables(0).Rows(iImgRow).Item("ImageURL")
Dim physicalName = Server.MapPath(ImageURL)
oUpload.DeleteFileFromServer(physicalName, iAdid, iImgID)

..但是当以设定的时间间隔在单独的线程中运行的维护任务确定需要删除上述文件时,我遇到了问题:

Dim ImageURL As String = dsImage.Tables(0).Rows(i - 1).Item("ImageURL")
Dim iImgID As Integer = dsImage.Tables(0).Rows(i - 1).Item("ImageId")
Dim physicalName As String = HttpContext.Current.Server.MapPath(ImageURL)
oUpload.DeleteFileFromServer(physicalName, iAdID, iImgID)

在后一种情况下,HttpContext.Current.Server.MapPath(ImageURL)的值为 Nothing。

有没有办法获得这种情况的完整路径?

4

2 回答 2

40

当您的代码在线程内运行时,该HttpContext.Current选项不可用。

要拥有您的 Web 应用程序路径,您可以使用:

System.Web.Hosting.HostingEnvironment.MapPath("~/")

或者您可以简单地在HttpRuntime.AppDomainAppPath属性中找到它(推荐/更快)。

于 2015-11-18T09:36:45.910 回答
1

假设路径是相对的,那么单独的进程不知道它们相对于什么,哪个 Web 应用程序。在这种情况下,您需要将其存储在配置中,然后将两者附加在一起或在 ~/ 上执行字符串替换

于 2011-01-20T00:30:15.023 回答