删除指定目录下的所有文件包括目录
public?class DelFile{??
/**
??? * 刪除指定目錄下全部文件和目錄
??? * @param filePath 需刪除的文件目錄路徑
??? */
?? public static void delAllFile(String filePath)
?? {
?????? /**
??????? * 指定刪除目錄路徑構造一個文件對象
??????? */
?????? File file = new File(filePath);
??????
?????? File[] fileList = file.listFiles();
?????? /**
??????? * 初始化子目錄路徑
??????? */
?????? String dirPath = null;
??????
?????? if(fileList != null)
?????????? for(int i = 0 ; i < fileList.length; i++)
?????????? {
?????????????? /**
??????????????? * 如果是文件就將其刪除
??????????????? */
?????????????? if(fileList[i].isFile())
?????????????????? fileList[i].delete();
?????????????? /**
??????????????? * 如果是目錄,那么將些目錄下所有文件刪除后再將其目錄刪除,
??????????????? */
?????????????? if(fileList[i].isDirectory()){??
??????????????????
?????????????????? dirPath = fileList[i].getPath();
?????????????????? //遞歸刪除指定目錄下所有文件
?????????????????? delAllFile(dirPath);
?????????????? }
?????????? }
?????? /**
??????? * 刪除給定根目錄
??????? */
?????? file.delete();
?? }
}
總結
以上是生活随笔為你收集整理的删除指定目录下的所有文件包括目录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: automation服务器不能创建对象”
- 下一篇: 创建jar包