Estoy tratando de crear un archivo en el sistema de archivos, pero seguir recibiendo esta excepción:No se puede hacer java.io.IOException archivo: No existe el fichero o directorio
java.io.IOException: No such file or directory
tengo un directorio existente, y yo Estoy tratando de escribir un archivo en ese directorio.
// I have also tried this below, but get same error
// new File(System.getProperty("user.home") + "/.foo/bar/" + fileName);
File f = new File(System.getProperty("user.home") + "/.foo/bar/", fileName);
if (f.exists() && !f.canWrite())
throw new IOException("Kan ikke skrive til filsystemet " + f.getAbsolutePath());
if (!f.isFile()) {
f.createNewFile(); // Exception here
} else {
f.setLastModified(System.currentTimeMillis());
}
Conseguir excepción:
java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:883)`
que tiene permiso de escritura en el camino, sin embargo, el archivo no se crea.
¿Puede usted por favor agregue a esta línea después de la primera línea, y nos muestran la salida: System.out.println (f); –
¿Y está seguro de que los directorios '.foo/bar' en realidad existen? – trojanfoe
¿cuál es el punto en ** /. Foo/bar **? – denolk