Quantcast
Channel: sharpcompress Discussions Rss Feed
Browsing all 239 articles
Browse latest View live

New Post: Monitoring zip progress with delegates?

There are events on AbstractArchive and AbstractReader that fire when extraction occurs. Look at the top of the...

View Article


New Post: Monitoring zip progress with delegates?

Cool thanks guys. What about when creating a zip? I have a lot of large files I need to zip, so being able to get feed back on that would be amazing.

View Article


New Post: Monitoring zip progress with delegates?

Sorry, don't have that in. Though it ought to be :) Could you make an issue on the GitHub site? Thanks.

View Article

New Post: Monitoring zip progress with delegates?

Done. :) https://github.com/adamhathcock/sharpcompress/issues/18

View Article

New Post: Left date (creation, read, edit) unchanged after file is added to...

I successfully create my zip archive but, I don't want that editing date of file added in this zip archive is automatically altered. In the worst case I would set editing date to a given date. How can...

View Article


New Post: Rar Files

First is how do you code for Rar files? Next I was using Ionic.Zip.dll but had issues with reading rar files. Line of coding I used for my program was this: using (ZipFile zip = ZipFile.Read(armaPath +...

View Article

New Post: Rar Files

Look at the tests https://github.com/adamhathcock/sharpcompress/blob/master/SharpCompress.Test/Rar/RarArchiveTests.cs

View Article

New Post: How to OpenRead in WP 8.1

Dim fs As System.IO.Stream = ???OpenRead???("MyFolder/MyBuildActionContentFile.zip") Dim archive = SharpCompress.Archive.ArchiveFactory.Open(fs) For i As Integer = 0 To archive.Entries.Count - 1 If Not...

View Article


New Post: How to OpenRead in WP 8.1

Windows Phone 8.0Dim fs As IO.FileStream = IO.File.OpenRead(MyFolder/MyFile.txt) Windwos Phone 8.1 WinRTDim fs As System.IO.Stream = Await...

View Article


New Post: Windows Phone 8.1 extraction

Hello there! I am developing an app that targets Windows Phone 8.1 and my backend constructs a password-protected .zip file. This file is being downloaded by my app in order to feed it with data for...

View Article

New Post: Reading GZIP file 'on the fly'

Lets say I'm making an HttpWebRequest for a gzip file out on a remote server. How do I stream that through SharpCompress so that I can write the content to disk (or to some other output stream)? I...

View Article

New Post: Read Archive Comment

Ahoy, i did some research regarding this topic before, but got no helpfull information, as i know, i can read the "per entry comments" in a zip file by using something like this:string...

View Article

New Post: Read Archive Comment

Looks like this is something I haven't currently implemented. You can put an issue on the github site or better yet, fork the repo and fix it then submit a pull request :) Thanks.

View Article


New Post: ArchiveFactory.Open() don't work on Windows Univerval App

So, here is a very simple code :IRandomAccessStreamWithContentType stream = await file.OpenReadAsync(); IArchive archive = ArchiveFactory.Open(stream.AsStreamForRead()); This should work fine, but...

View Article

New Post: 7z timestamp metadata

Hi, currently time-stamp metadata is not accessible for 7z archives. When trying to get an entries last access, last modified or created times, the property accessor throws a NotImplementedException....

View Article


New Post: Inspection of a rar multipart archive

Hello Adam, as far as I can see, 7-zip and WinRar are able to retrieve information about the whole archive by inspecting only a single part of a multipart archive. These information contain data like...

View Article

New Post: Windows Phone 7.8: MissingMethodException when calling...

I'm trying to use SharpCompress in Visual Studio 2010 Express for Windows Phone 7. Here's my simple code:IsolatedStorageFileStream inputFile; RarReader reader; inputFile =...

View Article


New Post: Increase File Extraction Speed VB.net

Hi All I would like to know if there is a way for me to increase the speed of the decompressor on sharpcompress I have looked through the forums and can't find what I'm looking for I'm using Visual...

View Article

New Post: Reading files in order including sub directories

I'm trying to read archives in order that can be in the following format: -File1 -File2 -File3 or -SubDirectory --File1 --File2 --File3 Using the method in the documentation works and includes sub...

View Article

New Post: Working example code für Windwos Store 8.x?

I can't find anywhere working examplecode for Windows store applications, running Windows 8.1. Does somewhere an example exists (which also supports unzipping large zip files with many nested...

View Article
Browsing all 239 articles
Browse latest View live