首页 > 其他 > 详细

遍历目录下的所有文件,同时获取文件的类型

时间:2021-07-17 18:34:16      阅读:36      评论:0      收藏:0      [点我收藏+]

遍历指定目录下的所有文件,同时获取文件的类型,即后缀名。

    public static void main(String[] args) {
        String pathName = "D:\\testPath";
        showFileName(pathName);
    }

     public static void showFileName(String path) {
        File file = new File(path);
        if (file.exists()) {
            File[] files = file.listFiles();
            if (null != files) {
                for (File innerFile : files) {
                    if (innerFile.isDirectory()) {
                        System.out.println("文件夹:" + innerFile.getAbsolutePath());
                        showFileName(innerFile.getAbsolutePath());
                    } else {
                        System.out.println("文件:" + innerFile.getAbsolutePath());
                        String fileName = innerFile.getName();
                        //获取文件的后缀名
                        String suffix = fileName.substring(fileName.lastIndexOf("."));
                        System.out.println(fileName + ", suffix = " + suffix);
                    }
                }
            }
        } else {
            System.out.println("文件不存在!");
        }
    }

遍历目录下的所有文件,同时获取文件的类型

原文:https://www.cnblogs.com/east7/p/15023563.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!