-
Bug
-
Resolution: Fixed
-
P3
-
12
-
b05
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8231235 | 11.0.6 | Lance Andersen | P3 | Resolved | Fixed | b01 |
Consider the following:
Path dir = fs.getPath("./META-INF");
Files.walk(dir).forEach(System.out::println);
This should yield an entry with path "./META-INF/MANIFEST.MF", instead the path is "META-INF/MANIFEST.MF".
Note thatJDK-8211385 partly fixes this issue but the entries need to be resolved against the directory.
Path dir = fs.getPath("./META-INF");
Files.walk(dir).forEach(System.out::println);
This should yield an entry with path "./META-INF/MANIFEST.MF", instead the path is "META-INF/MANIFEST.MF".
Note that
- backported by
-
JDK-8231235 (zipfs) ZipDirectoryStream should provide a stream of paths that are relative to the directory
- Resolved
- relates to
-
JDK-8211385 (zipfs) ZipDirectoryStream yields a stream of absolute paths when directory is relative
- Closed
-
JDK-8222807 (zipfs) OutOfMemory on compiling with darcula.jar in classpath
- Closed