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

列出指定目录中所有的文件

时间:2016-08-25 20:34:05      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

public class Hello{
    public static void main(String args[]) throws Exception{
        File file = new File("E:" + File.separator);
        list(file);
    }
    
    public static void list(File file){
        if(file.isDirectory()){
            File result[] = file.listFiles();
            if(result != null){
                for(int i=0; i<result.length; i++){
                    list(result[i]);
                }
            }
        }
        System.out.println(file);
    }
}

 

列出指定目录中所有的文件

标签:

原文地址:http://www.cnblogs.com/cyxxzjp/p/5808171.html

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