我有 ac# 应用程序,我必须在其中删除一个目录:
if (buttonName == "Supprimer projet")
{
if (url != null)
{
proj.DeleteDirectory(proj.GetProjectsId(url));
var path = Path.Combine(@"C:\Projets", url);
try
{
Directory.Delete(path);
}
catch { }
return RedirectToAction("Gestion", "Admin");
}
}
但我有这个例外the directory is not empty \r\n
。
这个错误的原因是什么?我该如何解决?