|
@ -29,7 +29,7 @@ public class HolaFichero { |
|
|
|
|
|
|
|
|
public void CreoFicheroWindows(){ |
|
|
public void CreoFicheroWindows(){ |
|
|
System.out.println("Creando fichero en Windows"); |
|
|
System.out.println("Creando fichero en Windows"); |
|
|
File ficheroW = new File("C:\\Users\\yaros\\Documents\\Otros\\CreoFicheroWindows.txt"); |
|
|
|
|
|
|
|
|
File ficheroW = new File("C:\\Users\\yaros\\Documents\\Otros\\FicheroWindows.txt"); |
|
|
if (!ficheroW.exists()) { |
|
|
if (!ficheroW.exists()) { |
|
|
try { |
|
|
try { |
|
|
ficheroW.createNewFile(); |
|
|
ficheroW.createNewFile(); |
|
@ -45,7 +45,7 @@ public class HolaFichero { |
|
|
|
|
|
|
|
|
public void CreoFicheroLinux() { |
|
|
public void CreoFicheroLinux() { |
|
|
System.out.println("Creando fichero en Linux"); |
|
|
System.out.println("Creando fichero en Linux"); |
|
|
File ficheroL = new File("/home/Yaros/Documents/CreoFicheroUnix.txt"); |
|
|
|
|
|
|
|
|
File ficheroL = new File("/home/Yaros/Documents/FicheroLinux.txt"); |
|
|
if (!ficheroL.exists()) { |
|
|
if (!ficheroL.exists()) { |
|
|
try { |
|
|
try { |
|
|
ficheroL.createNewFile(); |
|
|
ficheroL.createNewFile(); |
|
|