8032220: Files.createDirectories throws exception with confusing message for root directories that exist

Reviewed-by: chegar
This commit is contained in:
Alan Bateman 2014-01-21 09:33:48 +00:00
parent 65bdf9f853
commit c276ce4f08
4 changed files with 22 additions and 5 deletions

View File

@ -752,9 +752,12 @@ public final class Files {
}
if (parent == null) {
// unable to find existing parent
if (se != null)
if (se == null) {
throw new FileSystemException(dir.toString(), null,
"Unable to determine if root directory exists");
} else {
throw se;
throw new IOException("Root directory does not exist");
}
}
// create directories

View File

@ -375,11 +375,12 @@ public abstract class UnixFileSystemProvider
UnixPath dir = UnixPath.toUnixPath(obj);
dir.checkWrite();
int mode = UnixFileModeAttribute
.toUnixMode(UnixFileModeAttribute.ALL_PERMISSIONS, attrs);
int mode = UnixFileModeAttribute.toUnixMode(UnixFileModeAttribute.ALL_PERMISSIONS, attrs);
try {
mkdir(dir, mode);
} catch (UnixException x) {
if (x.errno() == EISDIR)
throw new FileAlreadyExistsException(dir.toString());
x.rethrowAsIOException(dir);
}
}

View File

@ -493,6 +493,14 @@ public class WindowsFileSystemProvider
try {
CreateDirectory(dir.getPathForWin32Calls(), sd.address());
} catch (WindowsException x) {
// convert ERROR_ACCESS_DENIED to FileAlreadyExistsException if we can
// verify that the directory exists
if (x.lastError() == ERROR_ACCESS_DENIED) {
try {
if (WindowsFileAttributes.get(dir, false).isDirectory())
throw new FileAlreadyExistsException(dir.toString());
} catch (WindowsException ignore) { }
}
x.rethrowAsIOException(dir);
} finally {
sd.release();

View File

@ -22,7 +22,7 @@
*/
/* @test
* @bug 4313887 6838333 8005566
* @bug 4313887 6838333 8005566 8032220
* @summary Unit test for miscellenous methods in java.nio.file.Files
* @library ..
*/
@ -76,6 +76,11 @@ public class Misc {
createDirectories(file.resolve("y"));
throw new RuntimeException("failure expected");
} catch (IOException x) { }
// the root directory always exists
Path root = Paths.get("/");
Files.createDirectories(root);
Files.createDirectories(root.toAbsolutePath());
}
/**