Добавил распаковку вложенных архивов

This commit is contained in:
Book Pauk
2019-02-27 23:19:18 +07:00
parent c4f6c9383c
commit 716b8b5b9a
2 changed files with 20 additions and 1 deletions

View File

@@ -73,6 +73,10 @@ class FileDecompressor {
result.selectedFile = sel;
result.fileList = fileList;
if (sel != filename) {
result.nesting = await this.decompressFile(sel, `${outputDir}/${utils.randomHexString(10)}`);
}
return result;
}