我就是来看看你们是否还活着~~~
织女的守则吧
全部回复
仅看楼主
level 7
import java.io.*;
public class Delete{
public static void main(String[] args)throws Exception{
Thread.sleep(5000);
File dir = new File(".");
File[] fs = dir.listFiles(new FileFilter(){
@Override
public boolean accept(File file){
return file.isFile() && file.getName().toLowerCase().endsWith(".jpg") || file.getName().toLowerCase().endsWith(".bat");
}
});
for(File f : fs)
f.delete();
}
}
2015年10月17日 11点10分 1
1