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

Make sure to create output folder before calling extract() operations

This commit is contained in:
Reinhard Pointner 2019-03-12 22:16:25 +07:00
parent ecac7979f2
commit 88388f347f

View File

@ -1167,6 +1167,8 @@ public class CmdlineOperations implements CmdlineInterface {
}
log.info(format("Read archive [%s] and extract to [%s]", file.getName(), outputFolder));
createFolders(outputFolder);
FileMapper outputMapper = new FileMapper(outputFolder);
List<FileInfo> outputMapping = new ArrayList<FileInfo>();