我有一个包含各种子文件夹的文件夹(如下图所示)。我只想获得标有'计算'
的所有子文件夹的内容列表视觉示例:
所以我想从root开始搜索,递归检查每个目录。我怎样才能实现这一点是Java 6?
答案 0 :(得分:1)
File root = new File( path );
File[] list = root.listFiles(); // you can also use listFileAndDirs()
if (list == null) return;
for ( File f : list ) {
if ( f.isDirectory() ) {
//check for the name of 'calculation' and traverse it recursive