#ziplib (SharpZipLib) is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.

learn more… | top users | synonyms

0
votes
3answers
121 views

Extracting the contents of a zipped tab delimited file from a byte array

I've seen some answers to this question posted, but nothing exactly like what I am struggling with, and I'm having some trouble. Basically, I am using an API that returns data in a byte array like ...
1
vote
3answers
179 views

24GB tar.gz Decompress using sharpziplib

I have a current process to extract tar.gz but the current process can not handle over 4gb... I was wondering what I am doing wrong to cause me to get a error using the sharpzip lib It says that ...
2
votes
2answers
51 views

SharpZipLib's FastZip doesn't unzip directories on Mac

I'm using the following code on Mac using Mono to unzip a zip file. The zip file contains entries under directories (for example foo/bar.txt). However, in the unzipped directory, instead of creating a ...
0
votes
0answers
139 views

Download multiple Mp3 files from different urls as zip archive in asp.Net

I am working on a .Net Application in which i need to add multiple mp3 files to a zip archive and download the zip archive locally. The mp3 files are on different urls ad are not hosted or stored on ...
0
votes
0answers
52 views

icsharpcode.sharpziplib limitation

I am using the library to read a zip file. The zip contains about 200,000 files. Half of them with .txt extension and half of them with .csv extension. However, when I use the following code to ...
1
vote
1answer
68 views

“Invalid folder” error when compressing files with SharpZipLib

I have this function that I'm using to compress a list of files from the user's session, and then streaming it to the user's browser for download: public static void DownloadAllPhotos() { ...
-3
votes
1answer
233 views

ICsharpCode.SharpZipLib [closed]

How could I use the SharpZipLib to unzip a BZip2 file in memory and read the content of each file and content of each file of folders contained in it in memory? When loop through the files, is it ...
0
votes
1answer
167 views

Copy files from one zip to other zip - ICSharpCode.SharpZipLib.Zip

i would copy files from one ZipFile to another ZipFile. Why it issnt so easy? ' Copy files from b.zip to a.zip Dim a As New ZipFile(CurDir() & "\a.zip") Dim b As New ZipFile(CurDir() & ...
0
votes
1answer
194 views

how to send image as attachment with web service?

I want to add new employee to web service. The employee photo should be sent as an attachment with the web service. and sent as a password protected ZIP file.
0
votes
1answer
73 views

Create a ZipFile and add to it a txt file with a string from memory

I am using SharpZipLib but I could not find any example on how to crate a new ZipFile and add to it a file containing an string from the memory (and not from an existing file). Any suggestion ? Thanks ...
1
vote
1answer
108 views

How to use sharpziplib in Monotouch?

Hi I need to unzip a file in Monotouch for an iOS (and Andriod later) App and sharpziplib looks like a good choice (is it?). But how do I go about adding it in MonoDevelop (I have the latest version.) ...
1
vote
1answer
168 views

Decompressing .bz2 stream to file in C#

I'm having real trouble trying to use the .bz2 stuff from the SharpZipLib library and I've not been able to find any help else where. Any help or advice would be much appreciated and if anyone can ...
1
vote
1answer
116 views

packaging files to be read without need for extraction

In my current project i'm dealing with a huge number of files (over tens of milliard files with low volume-between 1 and 30 KB) as resources which copying them for my customer is time consuming job. ...
1
vote
0answers
286 views

Make a .tar.gz archive without folder structure using SharpZipLib

I am trying to .tar.gz a list of files from a folder using SharpZipLib. The problem is no matter how pass the files paths - the result always contains the files paths - and not only the files thems ...
0
votes
2answers
245 views

Why is my SharpZipLib ZipEntry.Comment not getting set (or read)?

I've been working on a tool that uses SharpZipLib to add files to a zipfile, with a comment against the ZipEntry to store a piece of metadata I need. (I know there are other ways I could handle ...
0
votes
1answer
196 views

How can I Read more info ZipEntry(s) inside of a ZipEntry with sharpZipLibrary?

I have to list all the information available inside a zip file (FileName, lenght, date created, modified, and so on). Some zip files that I have to analyze come with folders and zip files inside of ...
0
votes
0answers
171 views

unzip file recursively from different sub folder to single directory using sharp zip lib

How can I unzip the files from zip file which contains wav files and also within the different sub folders. Here I want to extract all wav files to single directory without creating the sub folder but ...
1
vote
1answer
132 views

Creating in-memory archive with multiple files [duplicate]

Possible Duplicate: Using System.IO.Packaging to generate a ZIP file I have a controller where i create multiple PDF files. What i need to do is, foreach pdf i create in my controller, add ...
2
votes
2answers
236 views

Most Space-Efficient Way to Store a Byte Array in a Database Table - ASP.NET

Right now we have a database table (SQL Server 2008 R2) that stores an uploaded file (PDF, DOC, TXT, etc.) in an image type column. A user uploads this file from an ASP.NET application. My project is ...
5
votes
1answer
134 views

In PHP, each character in decompressed gz string is followed by ^@, why?

I'm sending over a gzipped string from C# (using SharpZipLib) to PHP where I decompress with readgzfile. This works, however each character in the string is followed by two strange characters (using ...
0
votes
2answers
379 views

How to decompress .bz2 file in C#?

I am developing wpf application. I am using sharpziplib to compress and decompress files. I am easily decompress the .zip files using following code public static void UnZip(string SrcFile, string ...
2
votes
1answer
299 views

PHP => Inflate GZipped string coming from C# SharpZipLib?

i have a C# application where i am using SharpZipLib to deflate a very long string and then send the data over to a PHP Service in a Base64 string of the deflated byte[]. For some reason, when trying ...
0
votes
1answer
1k views

Sharpzlib read an ZipInputStream with resume

What I'm trying to achive is to enable an application to extract a large remote file (from ftp or http), without fully downloading it and with the possibility to resume the extraction in case of ...
1
vote
3answers
266 views

Deflating a stream with SharpZipLib has different behaviors in C# vs. VB.NET

I'm having troubles in writing a static Deflate extension method, that i would use to deflate a string, using BZip2 alghorithm of the SharpZipLib library (runtime version: v2.0.50727). I'm doing it ...
1
vote
2answers
665 views

C#: Extract a zipped file only (without the folder)

With the SharpZip lib I can easily extract a file from a zip archive: FastZip fz = new FastZip(); string path = "C:/bla.zip"; fz.ExtractZip(bla,"C:/Unzips/",".*"); However this puts the ...
2
votes
2answers
2k views

How do I correctly prepare an 'HTTP Redirect Binding' SAML Request using C#

I need to create an SP initiated SAML 2.0 Authentication transaction using HTTP Redirect Binding method. It turns out this is quite easy. Just get the IdP URI and concatenate a single query-string ...
2
votes
3answers
560 views

C#.net identify zip file

I am currently using the SharpZip api to handle my zip file entries. It works splendid for zipping and unzipping. Though, I am having trouble identifying if a file is a zip or not. I need to know if ...
0
votes
1answer
478 views

Unit testing a FileStreamResult

I have a Controller which returns a FileStreamResult via SharpZipLib (I have tried DotNetZip and there is no difference). using (var buffer = new MemoryStream()) { using (var zipStream = new ...
2
votes
3answers
368 views

Extract zip entries to another Zip file

Can anyone tell me why the following code doesnt work? I am using the SharpZipLib API for the Zip streams, latest version DL'ed today from their site. Im attempting to use this logic to merge the ...
0
votes
1answer
1k views

Could not load file or assembly 'ICSharpCode.SharpZipLib' or one of its dependencies. Access is denied

Archiving is working on a remote desktop (coworker) in the office and on the website. I have tested it. I am writing a service and i need this inside it also. This is not working on my machine, i ...
0
votes
2answers
690 views

Best way to extract .zip and put in .jar

I have been trying to find the best way to do this I have thought of extracting the contents of the .jar then moving the files into the directory then putting it back as a jar. Im not sure is the best ...
0
votes
2answers
392 views

Unzipping two different zip files with sharpziplib to the same directory

I have looked around quite abit and there does not seem to be any information on using sharpziplib to extract multiple zip files to the same directory. I am using telerik control RadUpload to upload ...
0
votes
0answers
151 views

SharpZipLib File Attribute

I'm trying to retrieve File Attributes focusing on File version (my zipped file is filled with some .dll) I'm able to decompress a specified (working) file from the zip but it loses its attributes ...
0
votes
0answers
189 views

How to set inflaterInputStream.Position?

I'm trying to set inflater.Position by calling the code below: Stream data = Compress(buffer); // data: length=12, position=12 //inflater: length=0, position=12 InflaterInputStream ...
0
votes
1answer
199 views

InflaterInputStream.Read causes errors

This is what I have: byte[] buff = new byte[1]; byte[] buffer = { 10, 20, 30, 40 }; Stream data = new MemoryStream(); data.Write(buffer, 2, 2); ...
1
vote
1answer
496 views

Problems with creating ZIP file in c#

I am trying to create zip file by this code, but nothing works, the constractor of ZipFile doesnt get () only overloading with arguments, and i don't have the SAVE method? Whats wrong? using ...
1
vote
1answer
392 views

Absolute path directories are created during a zip file download application using ASP.NET

Using this I have written code to first created a zip folder and then download the zip file when user clicks on download all button. It is working fine. But when user extracts that zip file ...
0
votes
2answers
413 views

Using SharpZipLib and getting progress status?

How would i show the progress of compressing in SharpZipLib? I'm developing a small application that Zip many file to a single zip file. it may got a while to be done, there might be a progress bar ...
3
votes
1answer
293 views

Which compression type should i choose in SharpZipLib?

I have a File Transfer Application that sends files and folders. (Server - client) im trying to send data over tcp (sockets), I've made some rules for the way of transferring the data, so if it's ...
2
votes
1answer
1k views

Using ICSharpCode.SharpZipLib.Zip Subfolder in zip when its not suppose to be

I am using the library ICSharpCode.SharpZipLib.Zip; My code is follows: The path is root. \\ALAWP\\THIS\\ACORD\\ I'm zipping them to the ZIPDirectory However when it's done the file is not named ...
1
vote
2answers
868 views

How to decompress deflate stream (not gzip) using SharpZipLib?

I am working on an app on Windows Phone and trying to get data from a web server by HTTP GET method, and the content-encoding field in the response indicates that the data was compressed by deflate ...
0
votes
3answers
893 views

SharpZipLib to compress a string

I need to compress a string to reduce the size of a web service response. I see the unit tests in the SharpZipLib samples, but not an example of exactly what I need. In the following code, the ...
0
votes
1answer
239 views

How to add a file in a zip using SharpZibLib in c#

I am trying to add a file to an existing zip using sharpZibLib in c#. When run zip gets qverwrite i.e all files within zip gets deleted and only new file is there in a zip. using (FileStream ...
2
votes
1answer
2k views

Create zip from multiple files in memory

I am trying to use SharpZipLib to generate zip file and let the client download it. Currently zip folder is created and available on client machine but the issue is download.zip folder is blank. The ...
1
vote
1answer
1k views

C# networkstream compression - Sharpziplib, DotNetZip, gzipstream all give errors on my stream

I have a pair of C# client-server programs that communicate using a networkstream. Everything works fine as it is without compression. Now I'd like to get the bandwidth-usage down, so I want to use a ...
0
votes
1answer
496 views

Unzip file and upload contents to Blob Storage using Azure Web Role

I currently have a web role which displays a webpage, the webpage allows the user to select a file from their computer, the web role then uploads the file to some Azure Blob Storage. However the file ...
2
votes
2answers
346 views

SharpZipLib cannot use StreamWriter to write text to newly created csv file

I do not seem to be able to write text via StreamWriter to a to be newly created zip file (not gzip). I use SharpZipLib and do not quite comprehend how to get it to work. DJ Kraze helped me with ...
0
votes
1answer
340 views

How to remove folder path within zip file.I want only txt files in zip file

I am generating a zip file from the folder D:\Nagaraj\Dotnet\Zipfile\Zipfile\Filebuild\Hi. There are 2 txt files within the folder. But problem is that within the zip file there is the path ...
3
votes
2answers
3k views

Creating Zip file using SharpZipLib

I need to combine 3 files into 1 zip file and make it available to download for the user. I am able to achieve my requirement except one thing: it zips the files into the subfolders. For example, my ...
1
vote
1answer
962 views

SharpZipLib create an archive with an in-memory string and download as an attachment

I use DotNetZip to create a zip archive with an in memory string and download it as an attachment with the following code. byte[] formXml = ...

1 2 3