Browse Source

Actividad Permisos de un archivo

root
kevin 2 years ago
commit
5dd5d189e9
8 changed files with 74 additions and 0 deletions
  1. +10
    -0
      .classpath
  2. +17
    -0
      .project
  3. +2
    -0
      .settings/org.eclipse.core.resources.prefs
  4. +14
    -0
      .settings/org.eclipse.jdt.core.prefs
  5. BIN
      bin/dam/daw/com/es/HolaFicheroPermisos.class
  6. BIN
      bin/module-info.class
  7. +29
    -0
      src/dam/daw/com/es/HolaFicheroPermisos.java
  8. +2
    -0
      src/module-info.java

+ 10
- 0
.classpath View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 17
- 0
.project View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>HolaFicheroPermisos</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 2
- 0
.settings/org.eclipse.core.resources.prefs View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

+ 14
- 0
.settings/org.eclipse.jdt.core.prefs View File

@ -0,0 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17

BIN
bin/dam/daw/com/es/HolaFicheroPermisos.class View File


BIN
bin/module-info.class View File


+ 29
- 0
src/dam/daw/com/es/HolaFicheroPermisos.java View File

@ -0,0 +1,29 @@
package dam.daw.com.es;
import java.io.File;
import java.io.IOException;
import java.util.Date;
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");
// check if the file exists
boolean exists = file.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());
}
else
{
System.out.println("File not found.");
}
}
}

+ 2
- 0
src/module-info.java View File

@ -0,0 +1,2 @@
module HolaFicheroPermisos {
}

Loading…
Cancel
Save