遍历目录文件

Posted one_person

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历目录文件相关的知识,希望对你有一定的参考价值。

public static List<String> listFile(List<String> lstFileNames, File f,
            String suffix, boolean isdepth) {
        // 若是目录, 采用递归的方法遍历子目录
        try {
            if (f.isDirectory()) {
                File[] t = f.listFiles();
                for (int i = 0; i < t.length; i++) {
                    if (isdepth || t[i].isFile()) {
                        listFile(lstFileNames, t[i], suffix, isdepth);
                    }
                }
            } else {
                String filePath = f.getPath();
                if (!suffix.equals("")) {
                    int begIndex = filePath.lastIndexOf("."); 
                    String tempsuffix = "";

                    if (begIndex != -1) {
                        tempsuffix = filePath.substring(begIndex + 1,
                                filePath.length());
                        if (suffix.contains("." + tempsuffix + ".")) {
                            System.out.println("filePath:"+filePath);
                            lstFileNames.add(filePath);
                        }
                    }
                } else {
                    lstFileNames.add(filePath);
                }
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return lstFileNames;
    }

 

以上是关于遍历目录文件的主要内容,如果未能解决你的问题,请参考以下文章

Java 求解划分字母区间

Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段

Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段

web基础漏洞-目录遍历漏洞

python常用代码片段总结

PHP遍历并打印指定目录下所有文件实例