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

使用File类列出指定位置的文件信息,包含该路径子目录下的文件信息

时间:2016-10-13 02:39:49      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

public class Test{
public static void main(String [] args)
{
File f=new File("d:");
File [] fl=f.listFiles();
show(f1);
}
public static void show(File [] f1)
{
for(File f:fl)
{
if(f.isDirectory())
{
File [] f2=f.listFiles();
show(f2);
}
else
{
System.out.println(f);
}
 
 
}
}
 
 
}

使用File类列出指定位置的文件信息,包含该路径子目录下的文件信息

标签:

原文地址:http://www.cnblogs.com/liuruiguang/p/5954700.html

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