diff --git a/README.md b/README.md new file mode 100644 index 0000000..533934e --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ + +Explicacion de la actividad HolaficheroPermisos + + +Lo primero que he hecho es buscar un file/archivo.txt + +Luego he hecho que el programa muestre si en este archivo podemos ejecutar/leer/escribir/ultima vez escrito/lo que pesa el archivo/Nombre del archivo + +``` +Executable Readable Writable lastimewrite Lengh Name +---------- --------- --------- ------------- ------ ----- +true true true Tue Sep 20 16:52:59 CEST 2022 0 CreoFicheroWindows.txt \ No newline at end of file diff --git a/bin/dam/daw/com/es/HolaFicheroPermisos.class b/bin/dam/daw/com/es/HolaFicheroPermisos.class index 8f94fc291feacc034aa71c379bd9741a898d90b7..adecb08361d6c5f75238499db64b17728472d482 100644 GIT binary patch delta 53 zcmdnYyM=ede-<{@w9K4T!_6$LL5#8j4Ezj&48jZ|4AKmu49W~*47Cgr3=KeD2ZQY7 HVm1c=M3D*} delta 52 zcmdnOyP0>xe->7jw9K5;&8)0JjI#U;{0ssN!ayj^Ai|)`Aj(k7AkNUhAjQzZATzmy G%>e*6LkZ;o diff --git a/src/dam/daw/com/es/HolaFicheroPermisos.java b/src/dam/daw/com/es/HolaFicheroPermisos.java index 335e48b..d62c8b7 100644 --- a/src/dam/daw/com/es/HolaFicheroPermisos.java +++ b/src/dam/daw/com/es/HolaFicheroPermisos.java @@ -8,18 +8,19 @@ public class HolaFicheroPermisos { public static void main(String[] args) throws IOException { - // creating a file instance - File file = new File("C:\\Users\\kevin\\Documents\\workspace-spring-tool-suite-4-4.16.0.RELEASE\\CreoFicheroWindows.txt"); + // crear el file + File file1 = new File("C:\\Users\\kevin\\Documents\\workspace-spring-tool-suite-4-4.16.0.RELEASE\\CreoFicheroWindows.txt"); + - // check if the file exists - boolean exists = file.exists(); + // mira si existe + boolean exists = file1.exists(); if(exists == true) { // printing the permissions associated with the file System.out.println("Executable Readable Writable lastimewrite Lengh Name"); System.out.println("---------- --------- --------- ------------- ------ -----"); - System.out.println(file.canExecute() + " " + file.canRead() + " " + file.canWrite() +" "+ new Date(file.lastModified())+ " "+ file.length()+" "+ file.getName()); - + System.out.println(file1.canExecute() + " " + file1.canRead() + " " + file1.canWrite() +" "+ new Date(file1.lastModified())+ " "+ file1.length()+" "+ file1.getName()); + } else {