本文实例为大家分享了java删除指定目录下指定格式文件的具体代码,供大家参考,具体内容如下
正在看疯狂java讲义这本书,发现源码中有我不需要的class文件,想批量把它删除
代码如下:
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
|
import java.io.file;
public class main {
static int count = 0 ;
public static void main(string[] args) {
//路径
string path= "/media/lcy/data/workspaces/java/crazyjava" ;
string geshi= ".class" ;
refreshfilelist(path,geshi);
system.out.println( "共删除了:" + count + "个文件!" );
}
public static void refreshfilelist(string strpath,string geshi) {
file dir = new file(strpath);
file[] files = dir.listfiles();
if (files == null )
{
system.out.println( "该目录下没有任何一个文件!" );
return ;
}
for ( int i = 0 ; i < files.length; i++) {
if (files[i].isdirectory()) {
refreshfilelist(files[i].getabsolutepath(),geshi);
} else {
string strfilename = files[i].getabsolutepath().tolowercase();
if (strfilename.endswith(geshi)){
system.out.println( "正在删除:" + strfilename);
files[i].delete();
count++;
}
}
}
}
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/LCYong_/article/details/78115768