New Post: File not disposed after use
I really ought to put out a release but I just haven't had the time.Can you not compile without the cert or do you need it strong named?
View ArticleNew Post: File not disposed after use
No worries, the error i get is this:Error 1 Cannot import the following key file: SharpCompress.pfx. The key file may be password protected. To correct this, try to import the certificate again...
View ArticleNew Post: Adding empty directory
Hi,How would i go around adding a empty directory to a TarArchive?//adding files works as expectedvar tarArchive = TarArchive.Create(); tarArchive.AddEntry("/some/file1", someMemoryStream,...
View ArticleNew Post: Adding empty directory
There is no support for adding empty directories currently.
View ArticleNew Post: Low priority extraction
I want to use SharpCompress in a program I am developing.It's a file downloader for a private host (a winform app). It would do the same as jdownloader: once the file or files have been downloaded, it...
View ArticleNew Post: Low priority extraction
If you get the EntryStream yourself and do byte copying to another Stream in a loop, you should be able to insert whatever you'd like.There are many ways to manage the decompression. The high level...
View ArticleNew Post: Low priority extraction
Do you have an example of how can I get the EntryStream in my code, so I can do that?Thanks!!
View ArticleNew Post: Reading solid rar archive streams
Hello,Is it possible to read solid RAR archives in the following way: privatebool LoadArchive(string streamname) { IArchive archive = null; IReader reader = null; List streams = null; try { archive =...
View ArticleNew Post: Low priority extraction
You should be just able to call OpenEntryStream() from the Entry class from an Archive or if you're using a Reader, just call OpenEntryStream() on the reader when you've advanced to an entry.There is...
View ArticleNew Post: Reading solid rar archive streams
What does your Load method do?If you're calling OpenEntryStream() and SkipEntry(), there might be trouble. I should add more checks to the code so they won't interfere with one another.
View ArticleNew Post: Reading solid rar archive streams
As for the method Load, it is quite complex. But as far as EntryStream is concerned, this method reads from the stream until end of file or error. If everything was read ok, it returns true. I only...
View ArticleNew Post: Password protected archives
Why the Password unrar may not ever happen?it is the decryption?
View ArticleNew Post: Password protected archives
Parsing the WinRAR code for decrypting is not easy for me. I'm not sure if I'll ever get the time.
View ArticleNew Post: WinRT / Metro support
I downloaded the source and built the Windows Phone 7 project which is portable, so it was possible to include that library in the W8 project.
View ArticleNew Post: ReaderFactory has trouble reading some malformed zip files,...
I've run into this problem as well while trying out the package, but I actually think this is a problem in SharpCompress rather than malformed headers (or, at least, a case where it doesn't handle the...
View ArticleNew Post: ReaderFactory has trouble reading some malformed zip files,...
You're right in that you're describing the problem stated earlier. I wish we know why these 2 bytes exist and what's putting them in.For the ZipReader, I guess the answer is putting in checking for...
View ArticleNew Post: File not disposed after use
Dear Sirs, i have the same problem and it's possible to fix it without the certificate... if it's not possibile to have the certificate, is it possible to have the SharpCompress corrected library?I...
View ArticleNew Post: File not disposed after use
I just made the 0.8.2 release that should be good for you.
View ArticleNew Post: File not disposed after use
this could be a very useful library, but i'm sorry to report some errors that i can't understand:ERROR 1: files not disposed after use: both zip file and archiving filesERROR 2: file zip created not a...
View Article