| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/seven-it-work/BasicMod/master/src/main/java/utils/Utils3.java | [Back] [Original] |
package utils;
import cn.hutool.core.io.FileUtil;
import java.io.File;
import java.io.FileFilter;
public class Utils3 {
public static void main(String[] args) {
//
String filePath = "D:\\\\decompiled-Downfall";
FileUtil.loopFiles(filePath, new FileFilter() {
@Override
public boolean accept(File pathname) {
return pathname.getAbsolutePath().contains("localization");
}
}).forEach(file -> {
FileUtil.del(file);
});
}
}
| Web Proxy Viewer | New URL | Original Page |