1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

// normalize weird paths

This commit is contained in:
Reinhard Pointner 2016-04-01 13:04:13 +00:00
parent 20c94f02d2
commit b817d146a4

View File

@ -1118,6 +1118,7 @@ public class CmdlineOperations implements CmdlineInterface {
if (!outputFolder.isAbsolute()) {
outputFolder = new File(file.getParentFile(), outputFolder.getPath());
}
outputFolder = outputFolder.getCanonicalFile(); // normalize weird paths
log.info(format("Read archive [%s] and extract to [%s]", file.getName(), outputFolder));
final FileMapper outputMapper = new FileMapper(outputFolder);