3 questions from the last 7 days
0
votes
1
answer
42
views
ICSharpCode.SharpZipLib.Zip Create zip with directory entry throws "Entry cannot have any data"
I have a problem creating an archive and adding a directory entry. My code looks as follows:
using (var zip = ZipFile.Create(zipPath))
{
if (!string.IsNullOrEmpty(password))
{
zip....
0
votes
0
answers
27
views
Recursively Extracting Nested Archive Files
I have 500+ archive files that contain other archive files (.zip, .rar, .7z). For example:
archive.zip
|
|-file.abc
|
|-nested_archive.7z
|
file.def
|
...
0
votes
0
answers
9
views
MacOS library to create multipart ZIP and/or 7Z
Is there a library usable from a swift project on MacOS, that can create multipart/multivolume/split ZIP or 7Z archives, preferably both?
There are many ways how to create a zip archive (eg. ...