标签:
var filePath = Server.MapPath(item.Path); if (File.Exists(filePath)) { //删除文件 同时判断文件下面是否还有文件 没有则将目录页删除了 File.Delete(filePath); var directoryPath = Path.GetDirectoryName(item.Path); DirectoryInfo di = new DirectoryInfo(directoryPath); if (di.GetFiles().Length == 0) { di.Delete(); } }
标签:
原文地址:http://www.cnblogs.com/maijin/p/5844603.html