- package com.heima.test;
- import java.io.File;
- public class Test2 {
- /**
- * 删除文件夹
- */
- public static void main(String[] args) {
- File f1 = Test.getDir();
- delete(f1);
- System.out.println("删除成功");
- }
- public static void delete(File f1) {
- //创建File[] ,将路径下的 文件夹或者文件存放数组
- File[] f2 = f1.listFiles();
- if(f2 == null){
- return;
- }
- //遍历数组
- for (File f3 : f2) {
- if(f3.isFile()){
- f3.delete();
- }else if(f3.isDirectory()){
- delete(f3);
- }
- }
- f1.delete();
-
- }
-
-
-
- }
复制代码 |
|