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

递归获取文件列表(在控制台树形打印文件名)

时间:2015-07-23 08:12:29      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

import java.io.File;

public class TestFile {
public static void main(String[] args) {
File file = new File("D:/A");
tree(file,0);
}
private static void tree(File f,int level) {
String tabSpace = "";
for(int i=0; i<level;i++) {
tabSpace+=" ";
}
File[] childs = f.listFiles();
for(int i=0; i<childs.length; i++) {
System.out.println(tabSpace + childs[i].getName());
if(childs[i].isDirectory()) {
tree(childs[i],level+1);
}
}
}
}

递归获取文件列表(在控制台树形打印文件名)

标签:

原文地址:http://www.cnblogs.com/zhangkefan/p/4669309.html

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