Searched refs:toRealPath (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/java/nio/file/Path/
H A DMisc.java50 // toRealPath method
93 * Exercise toRealPath method
100 * Test: totRealPath() will access same file as toRealPath(NOFOLLOW_LINKS)
102 assertTrue(Files.isSameFile(file.toRealPath(), file.toRealPath(NOFOLLOW_LINKS)));
105 * Test: toRealPath should fail if file does not exist
109 doesNotExist.toRealPath();
114 doesNotExist.toRealPath(NOFOLLOW_LINKS);
120 * Test: toRealPath() should resolve links
124 assertTrue(link.toRealPath()
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java331 * @see #toRealPath
580 Path toRealPath(LinkOption... options) throws IOException; method in interface:Path
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java111 realPath = path.toRealPath();
166 zipfs = filesystems.get(uriToPath(uri).toRealPath());
168 // ignore the ioe from toRealPath(), return FSNFE
322 zfpath = zfpath.toRealPath();
H A DZipPath.java162 public ZipPath toRealPath(LinkOption... options) throws IOException { method in class:ZipPath
/openjdk7/jdk/test/java/nio/file/Files/
H A DCheckPermissions.java521 // -- toRealPath --
524 file.toRealPath();
528 file.toRealPath(LinkOption.NOFOLLOW_LINKS);
532 Paths.get(".").toRealPath();
536 Paths.get(".").toRealPath(LinkOption.NOFOLLOW_LINKS);
H A DPassThroughFileSystem.java489 public Path toRealPath(LinkOption... options) throws IOException { method in class:PassThroughFileSystem.PassThroughPath
490 return wrap(delegate.toRealPath(options));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DPathFileObject.java174 return path.toRealPath(LinkOption.NOFOLLOW_LINKS).getFileName().toString().equals(sn);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPath.java834 public WindowsPath toRealPath(LinkOption... options) throws IOException { method in class:WindowsPath
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfoFile.java483 zi = FileSystems.getDefault().getPath(zi).toRealPath().toString();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java826 public Path toRealPath(LinkOption... options) throws IOException { method in class:UnixPath

Completed in 47 milliseconds