1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
public string DeleteSpecifiedPathAllFile(string filepath) { try { DirectoryInfo info = new DirectoryInfo(filepath); info.Attributes = FileAttributes.Normal & FileAttributes.Directory; File.SetAttributes(filepath, FileAttributes.Normal); if(Directory.Exists(filepath)) { foreach(var file in Directory.GetFileSystemEntries(filepath)) { if(File.Exists(file)) { File.Delete(file); } else { DeleteSpecifiedPathAllFile(file); } } } return "当前路径下的所有文件夹以及文件删除成功!"; } catch(Exception ex) { return "删除出现异常,异常原因为:" + ex.Message; } }
|