Searched defs:zfpath (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java320 void removeFileSystem(Path zfpath, ZipFileSystem zfs) throws IOException { argument
322 zfpath = zfpath.toRealPath();
323 if (filesystems.get(zfpath) == zfs)
324 filesystems.remove(zfpath);
H A DZipFileSystem.java85 private final Path zfpath; field in class:ZipFileSystem
98 Path zfpath,
113 this.zfpath = zfpath;
114 if (Files.notExists(zfpath)) {
116 try (OutputStream os = Files.newOutputStream(zfpath, CREATE_NEW, WRITE)) {
120 throw new FileSystemNotFoundException(zfpath.toString());
124 zfpath.getFileSystem().provider().checkAccess(zfpath, AccessMode.READ);
125 if (!Files.isWritable(zfpath))
97 ZipFileSystem(ZipFileSystemProvider provider, Path zfpath, Map<String, ?> env) argument
[all...]

Completed in 33 milliseconds