码迷,mamicode.com
首页 > 其他好文 > 详细

读取目录下的所有文件

时间:2020-02-13 23:06:54      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:tab   direct   abs   tor   ring   null   path   读取   add   

采用递归的方式,逐层读取目录下的文件   

public void getFile(String path, List<String> fileList) {
        File file = new File(path);
        if (file.isDirectory()) {
            File[] files = file.listFiles();
            if (files != null) {
                for (File subFile : files) {
                    getFile(subFile.getPath(), fileList);
                }
            }
        } else {
            fileList.add(file.getAbsolutePath());
        }
    }

读取目录下的所有文件

标签:tab   direct   abs   tor   ring   null   path   读取   add   

原文地址:https://www.cnblogs.com/tulip20/p/12305407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!