I want to 7zip the directory and creates parts of lets say 100mb each with names test001.7zip , test002.7zip , ... and so on.
string sevenzip = System.Configuration.ConfigurationManager.AppSettings["7zippath"].ToString();
SevenZip.SevenZipCompressor.SetLibraryPath(sevenzip);
SevenZip.SevenZipCompressor Compress = new SevenZipCompressor(sFilePath);
Compress.ArchiveFormat = OutArchiveFormat.SevenZip;
Compress.CompressDirectory(sFilePath, "Zip.7zip");
this code creates the 7zip file of the directory successfully, but it doesnot create file in parts, I want to create the file in parts because I have to upload this file in parts of 100mb each ?