Browse Source

Project finished

main
Jesus 2 years ago
parent
commit
9c13b0d717
2 changed files with 2 additions and 1 deletions
  1. BIN
      bin/com/jesuspinar/gestorFichero/Util.class
  2. +2
    -1
      src/com/jesuspinar/gestorFichero/Util.java

BIN
bin/com/jesuspinar/gestorFichero/Util.class View File


+ 2
- 1
src/com/jesuspinar/gestorFichero/Util.java View File

@ -8,6 +8,7 @@ public class Util {
File f = new File(path);
if(f.isDirectory()) {
System.out.println(f.getAbsolutePath());
System.out.printf("%s %s\n","Permisos", "Archivo");
listItemsArgs(f);
}
}
@ -34,7 +35,7 @@ public class Util {
if(i.canExecute()) {
sb.append("-x");
}
System.out.printf("%s %s\n", sb.toString(), i.getName());
System.out.printf("%s\t %s\n", sb.toString(), i.getName());
sb.setLength(0);
}
}


Loading…
Cancel
Save