unzip multipart zip file

2021-04-27 Thread FabienPRI
Thank you, it works once files merged. I tested it under dos first > copy /b xxx.zip.001 + xxx.zip.002 + xxx.zip.003 + xxx.zip.004 xxx.zip then test the merge in nim, perhaps not the shortest way, but it works: var files: seq[string] for kind, path in walkDir "C:\\tmp\\testzip"

unzip multipart zip file

2021-04-26 Thread jyapayne
You need to concatenate all of the zip files into one file first, then extract that. See [here](https://unix.stackexchange.com/questions/40480/how-to-unzip-a-multipart-spanned-zip-on-linux)

unzip multipart zip file

2021-04-26 Thread xioren
Failing how? Failing to see the files as zip files?

unzip multipart zip file

2021-04-26 Thread FabienPRI
Hi all, I'd like to unzip some multiple zip files ( xxx.zip.001, xxx.zip.002, etc) that I've created using 7zip splitted in small file sizes. I am using the following code: for kind, path in walkDir "C:\\tmp\\testzip": if "zip.001" in path: echo path