|
@ -5,8 +5,10 @@ import java.io.File; |
|
|
public class MiTree { |
|
|
public class MiTree { |
|
|
|
|
|
|
|
|
public static void main(String args[]) { |
|
|
public static void main(String args[]) { |
|
|
|
|
|
String ruta="."; |
|
|
|
|
|
|
|
|
File file = new File("D:\\DAM 2\\Programacion Multimedia\\Pdf's"); |
|
|
|
|
|
|
|
|
if (args.length>=1) ruta = args[0]; |
|
|
|
|
|
File file = new File(ruta); |
|
|
|
|
|
|
|
|
treeRecursividad(file); |
|
|
treeRecursividad(file); |
|
|
|
|
|
|
|
|