Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
14k views

Using SharpZipLib to unzip specific files?

I'm trying to use SharpZipLib to pull specified files from a zip archive. All of the examples I've seen always expect that you want to unzip the entire zip, and do something along the lines of: ...
4
votes
2answers
189 views

lastwritetime is changing while extracting a zipfile in c#?

I am using Sharpziplib version 0.86 to extract a zip file. It is working fine but while extracting a winzip file through code,Lastwritetime is changing in seconds... Have used this also ...
3
votes
3answers
281 views

SharpZipLib - ZipException “System.ArgumentOutOfRangeException” - Why am I getting this exception?

I'm using SharpZipLib to unzip files. My code has been working nicely for all zipfiles except the zip file what i am extracting now... Got this exception: System.ArgumentOutOfRangeException: ...
3
votes
3answers
101 views

Same C# code slower in ASP.Net application versus Winforms App on same machine

We have a function in C# that uses the ICSharpCode SharpZipLib BZip2 decompression method to uncompress some XML we get from a database. We have noticed an issue on two of our webservers (Win 2K and ...
3
votes
1answer
251 views

What's wrong with my application -— Size was 0, but I expected 46806 !

I'm a C# programmer. Now, I'm using the ICSharpCode.SharpZipLib.dll to create a zip file in my current project. But it occurs to me that when I click the button at the SECOND TIME to execute a ...
3
votes
1answer
1k views

C# with SharpZipLib - Compatibility of SharpZipLib with Winzip and XP?

I am using the CSharpZipLib library to automatically zip some files. The problem is that the resulting zip file doesn't work with Winzip (version 8.1) or XP's compressed folders. It does work with ...
3
votes
5answers
4k views

How do I zip on the fly and stream to Response.Output in real time?

I am trying to use the following code: I get a corrupted zip file. Why? The file names seem OK. Perhaps they are not relative names, and that's the problem? private void ...
3
votes
4answers
3k views

Basics of SharpZipLib. What am I missing?

I have the following method in my code: private bool GenerateZipFile(List<FileInfo> filesToArchive, DateTime archiveDate) { try { using (ZipOutputStream zipStream = new ...
3
votes
3answers
3k views

SharpLibZip: Add file without path

I'm using the following code, using the SharpZipLib library, to add files to a .zip file, but each file is being stored with its full path. I need to only store the file, in the 'root' of the .zip ...
2
votes
1answer
27 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 ...
2
votes
0answers
20 views

How to zip files with japanese names in csharp?

I am using "ICSharpCode.SharpZipLib.Zip" namespace to zip the files. I want to zip some files with japanese names. When i zip using ZipOutputStream i am getting junk filenames. Can anyone help on ...
2
votes
4answers
1k views

How do I extract zip file in Windows Phone 7?

I have a zip file in my Windows Phone 7 project. I have set the Build Action to Content and Copy to output directory to Always. The zip file contains the folder structure. I want this to be copied ...
2
votes
1answer
204 views

SharpZipLib Problems Due to Zip Files with \ instead of /

I have a load of Legacy zips that have been zipped incorrectly. Files were saved in the zip so they are folder\filename rather than folder/filename. What that means is code like this: using ...
2
votes
1answer
485 views

How do I add files to an archive using SharpZipLib with no compression?

How do I add files to a Zip archive using SharpZipLib with no compression? Examples on Google seem to be woefully thin.
2
votes
1answer
361 views

SharpZipLib extracted file size

Is there a way to find out what the total size of the unextracted archive would be when extracted.
2
votes
5answers
2k views

Cannot Delete Zip file Created by SharpZipLib (FastZip)

I'm creating a zip file using the class FastZip from SharpZipLib and once I after I close the program, I cannot delete the file because: "Cannot delete zip.zip: It is being used by another person or ...
1
vote
1answer
22 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
vote
0answers
55 views

Using SharpZipLib to update a zip - something bad if the entry name includes folder

This is my code to update an existing zip, the callers pass in the ZipFile and have a finally block to close the zipfile. private static void AddFiles(ZipFile zipFile, string path, string ...
1
vote
3answers
65 views

When does it become worthwhile to spend the execution time to zip files?

We are using the #ziplib (found here) in an application that synchronizes files from a server for an occasionally connected client application. My question is, with this algorithm, when does it ...
1
vote
1answer
285 views

How can I extract a multi-volume zip file using SharpZipLib in C#?

I have a single file, Setup1.cab, which is split up into Setup1.zip.001 and Setup1.zip.002 that I used 7zip to archive. Once those volumes reach their destination, I'd like to be able to use C# to ...
1
vote
1answer
140 views

sharpziplib compressed files to be uncompressed externally

I have a scenario where by I want to zip an email attachment using SharpZipLib. Then the end user will open the attachment and will unzip the attached file. Will the file originally zipped file using ...
1
vote
1answer
109 views

Zip file on Mac usingICSharp

I am using mono and monobjc to develop an application to run on Mac OS X 10.6. I am adding some files to a zip file using ICSharpCode.SharpZip. The code is as - var ms = new MemoryStream(); var ...
1
vote
3answers
310 views

Unzip from a SQL Server text column to an image column

I have images of various formats (.png, .jpg, .bmp, etc.) stored as compressed text in a text column in a SQL Server 2005 table. I need to read the row, unzip the image and store it in an image ...
1
vote
1answer
217 views

Reverse action of ICSharpCode…InflaterInputStream in C#

I'm using ICSharpCode.SharpZipLib.dll for compress and decompress data. I have the following code that performs inflation of data: public static byte[] ZLibDecompress(byte[] zLibCompressedBuffer) { ...
1
vote
0answers
505 views

Error “EOF In Header” with version SharpZipLib 0.86.0.518

I use VS 2008 SP1 in Windows XP. I have updated ICSharpCode.SharpZipLib.dll from older 0.85.4.369 to new 0.86.0.518. I have been using it successfully for older 0.85.4.369. I have been able to zip ...
1
vote
1answer
1k views

SharpZipLib : Compressing a single file to a single compressed file

I am currently working with SharpZipLib under .NET 2.0 and via this I need to compress a single file to a single compressed archive. In order to do this I am currently using the following: string ...
1
vote
1answer
210 views

How to add EmptyFolder or directory in a zip file using ZipOutputStream

I want to be able creating zip files that contain empty folders, using ICSharpCode.SharpZipLib.Zip.ZipOutputStream. I can use ICSharpCode.SharpZipLib.Zip.FastZip.CreateEmptyDirectories = true, but ...
1
vote
2answers
815 views

sharpziplib - can you add a file without it copying the entire zip first?

Im trying to add a file to an existing .zip file using sharpziplib - problem is, the zip file is 1GB in size. When i try to add 1 small file (400k) sharpziplib creates a copy/temp of the orig zip ...
1
vote
1answer
579 views

SharpZipLib ZipEntry how can you change the name of a file in the zip?

How do you change the name stored in the zip file? Also, can this be done when adding the file via: ZipFile zf = new ZipFile("path"); zf.BeginUpdate(); zf.Add(filePath); <-- i would like to also ...
1
vote
3answers
909 views

Better gzip tool than SharpZipLib for Windows Mobile?

I use SharpZipLib for gzip on a Windows Mobile application written in c# I have this code public static bool gzDecompressFile(String inputFilePath, String outputFilePath) { if ...
1
vote
3answers
178 views

Issue with Zipped Streams from .Net and reading them from Java

I'm trying to zip a stream from .Net that can be read from Java code. So as input I have a byte array, which I want to compress and I'm expecting to have a binary array. I've tested with SharpZipLib ...
1
vote
4answers
5k views

c# sharpziplib adding file to existing archive

am trying to add a file to an existing archive using the following code. When run no errors or exceptions are shown but no files are added to the archive either. Any ideas why? using ...
1
vote
2answers
4k views

SharpZipLib ~ How to extract specific files from a zip

Ok, I have a list of files (SourceFile objects which just contain the filename only) then I want to pull those specific files out of a zip and dump them into a temp directory so I can distribute ...
1
vote
1answer
271 views

SharpZipLib - what is the status on this product?

I went to download SharpZipLib assemblies but it looks like its not on SourceForge. Is this a problem with their site or is this project no longer available? Is anyone still working on this project?
1
vote
2answers
528 views

Adding to/Delete from zip file can't find temp files

My program lets users add files to a zip file one upload at a time. The first upload creates a zip file, and subsequent uploads add to the created file. It also displays a list of all the files in ...
1
vote
3answers
195 views

Why are executable files not included in 'Extract All' on one machine, but not another?

We're providing a zip file of our application for testing and the same zip file on two separate machines is extracted differently. One will extract all files, the other will extract all but the ...
1
vote
3answers
1k views

Stream compression for network traffic

I am writing an xmpp library and I am trying to write a stream to support the zlib compressed data. I have two different versions one based on zlib.net and the other using SharpZipLib. The zlib.net ...
0
votes
1answer
49 views

How can I add a ProgressBar to my SharpZipLib utility in C#

I need to include a progressbar in my project but I'm not sure how to do or how successful call to the method that will be updated. The code where I want to include is the following, thank you very ...
0
votes
1answer
53 views

SharpZipLib Examine and select contents of a ZIP file

I am using SharpZipLib in a project and am wondering if it is possible to use it to look inside a zip file, and if one of the files within has a data modified in a range I am searching for then to ...
0
votes
1answer
126 views

Unzip file (odt or docx) in a memory stream

I have been developing an web application with Asp.Net and I'm using SharpZipLib to work with odt files (from Open Office) and in the future docx files (for ms office). I need to open an odt file ...
0
votes
1answer
109 views

Zip files which are located in IsolatedStorage

My application need to download multiple files in Silverlight, and because I don't want to ask user multiple times for permission to save the files, I save the files in IsolatedStorage first and then ...
0
votes
0answers
23 views

sharpziplib & looping through directory of gzips and getting an error

I have a directory with a bunch of gzip files. I am trying to loop through the directory and for each file extract. This code below works when there is one file but not when there is a loop. I get ...
0
votes
1answer
92 views

C# SharpZipLib write a file directly into zip

my process needs to create a zip file with a large number of files(that are also created by the process). Instead of having to create temporary files, zipping them and then deleting, can I directly ...
0
votes
1answer
179 views

SharpZipLib Deflater creates bad data

Original compressed data can be correctly inflated back. However, if I inflate data, deflate, and again inflate, resulting data are incorrect (e.g. simple data extraction, its modification and again ...
0
votes
1answer
241 views

SharpZipLib - adding folders/directories to a zip archive

From examples, I've got a pretty good grasp over how to extract a zip file. In nearly every example, the method of identifying when a ZipEntry is a directory is as follows string directoryName = ...
0
votes
1answer
285 views

How with sharpziplib get a zip file in memorystream or byte array format and unpack it

I have an app that downloads from ftp and gets the format in memorystream or byte array-it gets the zip file ALREADY ZIPPED ,how can i use sharpziplib with this input to unpack that content to a ...
0
votes
1answer
339 views

SharpZipLib: Decompress .gz from inside .tar file?

I have a .tar file containing multiple compressed .gz files. I have no issue itterating through the .tar file creating each .gz file in a destination directory. I'd like to skip writting the .gz all ...
0
votes
2answers
680 views

Silverlight 4: Creating a ZIP file programmatically

My application will be storing large amounts of cached data to local storage for performance and disconnected purposes. I have tried to use SharpZipLib to compress the cache files that are created, ...
0
votes
1answer
260 views

How to compress only files without folders using the SharpZipLib library? (C#)

I use the following code to create a zip file: var files = Directory.GetFiles(targetPath); var zip = ZipFile.Create(targetPath + "/myzip.zip"); zip.BeginUpdate(); foreach (var file in files) ...
0
votes
1answer
170 views

Setting LastWriteTime to an unzipped file's original timestamp

I am using Sharpziplib version 0.86.0 to extract a zip file. It is working fine but the files extracted are with current DateTime. How could I get the original DateTime? public static void ...

1 2