文件夹删除不起作用

时间:2012-04-05 23:24:55

标签: c# asp.net vb.net

If System.IO.Directory.Exists(HttpContext.Current.Server.MapPath("images/TravelogueGallery/" & getMaxID())) Then
    System.IO.Directory.Delete(HttpContext.Current.Server.MapPath("images/TravelogueGallery/" & getMaxID()), True)
End If

我使用上面的代码片段来删除目录,但是我收到了这个错误:

  

'G:\ Projects \ Latest \ LTCIndia 05-04-12 1415 \ images \ TravelogueGallery \ 19'不是有效的虚拟路径。

代码出了什么问题?

更新:我已使用正确答案更新了问题。上面的代码片段工作得很好。谢谢你们的时间。

1 个答案:

答案 0 :(得分:0)

If System.IO.Directory.Exists(HttpContext.Current.Server.MapPath("images/TravelogueGallery/" & getMaxID())) Then
    System.IO.Directory.Delete(HttpContext.Current.Server.MapPath("images/TravelogueGallery/" & getMaxID()), True)
End If

这是正确的答案。 我已用正确答案更新了问题。上面的代码片段工作得很好。谢谢你们的时间。