Home | History | Annotate | Download | only in fs

Lines Matching defs:dir

51     private static final String USER_DIR = "user.dir";
62 abstract UnixFileSystem newFileSystem(String dir);
382 UnixPath dir = UnixPath.toUnixPath(obj);
383 dir.checkWrite();
387 mkdir(dir, mode);
390 throw new FileAlreadyExistsException(dir.toString());
391 x.rethrowAsIOException(dir);
400 UnixPath dir = UnixPath.toUnixPath(obj);
401 dir.checkRead();
409 long ptr = opendir(dir);
410 return new UnixDirectoryStream(dir, ptr, filter);
413 throw new NotDirectoryException(dir.getPathForExceptionMessage());
414 x.rethrowAsIOException(dir);
424 dfd1 = open(dir, O_RDONLY, 0);
433 throw new NotDirectoryException(dir.getPathForExceptionMessage());
434 x.rethrowAsIOException(dir);
436 return new UnixSecureDirectoryStream(dir, dp, dfd2, filter);