当我想清除ASP.NET中文件夹中的内容时,我不断收到此错误:
无法找到路径'E:.....'的一部分。
这是一个例外:
System.IO.DirectoryNotFoundException:找不到路径'E:...'的一部分。
这是代码
Dim directory As New System.IO.DirectoryInfo(Server.MapPath("users/temporary/" & CStr(Session("Nickname"))))
Empty(directory)
有人知道可能出现什么问题吗?
答案 0 :(得分:1)
你可以执行测试来检查路径是否存在吗?像这样:
var myPath = Server.MapPath("~/App_Data/");
if (Directory.Exists(myPath)) {
//put a break point
}