import java.io.File;
public class ALL {
public static void main(String[] argv) throws Exception {
System.out.println("遍历目录");
File findFile = new File("/J/A/V/A/java"); //要遍历的目录
allFiles(findFile );//调用函数
}
public static void allFiles(File findFile ) {
System.out.println(findFile );//输出数据
if (findFile .isDirectory()) {
String[] child = findFile .list();
for (int i = 0; i < child.length; i++) {
allFiles(new File(findFile , child[i]));//调用函数
}
}
}
}
运行结果
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)