测试基础 统计文件数目

cheunghr · 2021年01月15日 · 1489 次阅读
public class FileTypeCount {
    int white = 0;
    int other = 0;
    LinkedList<String> whiteFileList = new LinkedList<>();
    LinkedList<String> otherFileList = new LinkedList<>();
    String[] whiteList = {"java", "jsp"};

    @Test
    public void scanFileType() {
        String path = "C:\\Users\\beix\\Desktop\\yk";
        recursionScan(path);
        System.out.println(Arrays.toString(whiteList) + " count:" + white);
        System.out.println("other file count:" + other);
    }

    public void recursionScan(String basePath) {
        List<String> whiteArray = Arrays.asList(whiteList);
        File file = new File(basePath);
        if (file.isDirectory()) {
            File[] files = file.listFiles();
            if (files != null) {
                for (File f : files) {
                    if (!f.isDirectory()) {
                        String fileName = f.getName();
                        String fileType = fileName.substring(fileName.lastIndexOf(".") + 1);
                        if (whiteArray.contains(fileType.toLowerCase())) {
                            whiteFileList.add(f.getAbsolutePath());
                            white++;
                        } else {
                            otherFileList.add(f.getAbsolutePath());
                            other++;
                        }
                    } else {
                        recursionScan(f.getAbsolutePath());
                    }
                }
            }
        }
    }
}
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册