I want to compress 3 folders into a single file using SevenZipCompressor . I know how to compress a single folder . Is such thing possible ??
Thank you !
I want to compress 3 folders into a single file using SevenZipCompressor . I know how to compress a single folder . Is such thing possible ??
Thank you !
Copyright © 2021 Jogjafile Inc.
The
SevenZipCompressor
class provides a method calledCompressFileDictionary()
. One of the method overloads expects a file dictionary and a file stream. The file dictionary is a ordinary .NetDictionary<string,string>
. The key of the dictionary is the name (or relative path) of the file in the archive, the value of the dictionary is the path to the file in the file system.The key of the dictionary allows you to control the structure in the 7z archive. For example if you want to compress the three folders
and the resulting structure in the archive should be
then just add the files to the dictonary in the following way:
The example below just shows how to automate the process of creating such a dictionary for folders and compress it into a single 7z archive file.
You can also create a ZIP-archive using the following code changes: