|
|
@ -44,21 +44,21 @@ public class Tree { |
|
|
|
} |
|
|
|
|
|
|
|
public static void printFile(File f, String spaces) { |
|
|
|
|
|
|
|
if(f.isDirectory()) |
|
|
|
System.out.println(colores[5]); |
|
|
|
else if(f.isFile()) |
|
|
|
System.out.println(colores[2]); |
|
|
|
|
|
|
|
System.out.println(spaces.concat("|____").concat(f.getName())+ANSI_RESET); |
|
|
|
System.out.println(ANSI_RESET); |
|
|
|
if (f.isDirectory() && f.canRead()) { |
|
|
|
for (File file : f.listFiles()) { |
|
|
|
|
|
|
|
printFile(file, spaces.concat(" " + colores[contador])); |
|
|
|
printFile(file, spaces.concat(" ")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if(contador<6) { |
|
|
|
contador++; |
|
|
|
}else{ |
|
|
|
contador = 0; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|