New Post: Office compatible archives
Well I've tried both ZipArchive and the Writer Factory. Both can be unzipped by SharpCompress and Windows but not by Office. If PowerPoint is open when I point it to the .ppsx it offers to repair the...
View ArticleNew Post: Office compatible archives
Well I'd say that's most likely it then. Thanks for your prompt feedback.
View ArticleNew Post: GetEntries from a reader?
I would like to setup a progress bar during unzipping a zip and for updating the progressbar with the progress I need to have number of entries in a given zip file. The problem is that GetEntries...
View ArticleNew Post: Multi part extraction
Hi, I would like to know how I can extract multi part rar/zip archives. Searching for some time in the code or in the documentention/discussions I was not able to find a ways which is still possible....
View ArticleNew Post: Multi part extraction
I don't have support for multi-volume zips currently. For the Archive interface, for multi-volume RARs, the files all need to be in the same directory. The file name is used to determine the order as...
View ArticleNew Post: GetEntries from a reader?
You should be using the ZipArchive class if you have the complete file. This ought to efficiently give you Entries via the Zip directory at the end of the file. The Reader interface is intended for use...
View ArticleNew Post: Multi part extraction
At the moment I initialize the rar archive by using:SharpCompress.Archive.Rar.RarArchive.Open(stream); whereas stream is a stream to the file. How do I "feed" this class now with the other streams of...
View ArticleNew Post: Multi part extraction
If you've got files all named properly and in the same directory, then all you need to do is use the file path Open (RarArchive.Open(string) or RarArchive.Open(FileInfo) Otherwise use...
View ArticleNew Post: GetEntries from a reader?
Thanks for the reply. I was going horribly wrong with the use of the appropriate class. ZipArchive was indeed what I was looking for. Probably, a few more examples in the documentation would be great!...
View ArticleNew Post: How to decompress Multi part zip files.
Hi, I was able to unzip multipart rar files. My client is asking me to do same for .zip files. Is there anyway to unpack multipart zip files. Any help is appriciated. Thanks in advance. Thanks, ravi
View ArticleNew Post: How to decompress Multi part zip files.
Sorry, multi-part zips currently aren't implemented. It's on my TODO list on the homepage. It should be a relatively simple addition if you'd like to take this on. Thanks.
View ArticleNew Post: 7z extraction problem
Hello, is it possible, that LZMA2 archives are no yet supported? Because I cannot extract those archives. SharpCompress does list the files in the archive, but is not able to extract it. The some...
View ArticleNew Post: Compiling from source
I'm trying to compile from source to check out the sample code. It keeps asking me to enter a password when running the pfx file, what is the password? I'm a C++ coder and new to C# and using DLLs but...
View ArticleNew Post: Compiling from source
For quick fix, I will just disable digital signature first. :)
View ArticleNew Post: Compiling from source
You're not meant to know the PFX password as that's the "official" build. Disabling strong naming/removing the signing requirement in the build ought to allow building.
View ArticleNew Post: Compiling from source
Hello Adam, Ok sorry about that. Can you at least give me a complete simple code to work with the DLL download? just a noob here.. I'm trying to create a feature for an existing app to read files from...
View ArticleNew Post: Wow! This library is awesome!
Just come across, since dotnetzip, and sharpziplib are dead. Great work.
View ArticleNew Post: Compiling from source
Sorry, this is a hobby project for me and I haven't had time to do all of the samples people want myself. All I can do is point to you to the unit tests that should have a lot of various working examples.
View Article