mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 22:05:00 -05:00
* fix for relative symlinks
This commit is contained in:
parent
d63fca6787
commit
0287eac77d
@ -21,7 +21,11 @@ public class MetaAttributeView extends AbstractMap<String, String> {
|
||||
public MetaAttributeView(File file) throws IOException {
|
||||
Path path = file.toPath();
|
||||
while (isSymbolicLink(path)) {
|
||||
path = readSymbolicLink(path);
|
||||
Path link = readSymbolicLink(path);
|
||||
if (!link.isAbsolute()) {
|
||||
link = path.getParent().resolve(link);
|
||||
}
|
||||
path = link;
|
||||
}
|
||||
|
||||
attributeView = Files.getFileAttributeView(path, UserDefinedFileAttributeView.class);
|
||||
|
Loading…
Reference in New Issue
Block a user