标签:文件 str out als ati bool print style public
public static boolean deleteFolder(String url) { File file = new File(url); if (!file.exists()) { return false; } if (file.isFile()) { file.delete(); return true; } else { File[] files = file.listFiles(); for (int i = 0; i < files.length; i++) { String root = files[i].getAbsolutePath();//得到子文件或文件夹的绝对路径 //System.out.println(root); deleteFolder(root); } file.delete(); return true; } }
JAVA利用递归的方法删除一个文件夹以及文件夹下所有的子文件
标签:文件 str out als ati bool print style public
原文地址:https://www.cnblogs.com/zhf123/p/11675301.html