|
Browse by Tags
All Tags » #ZipLib ( RSS)
-
I'm currently writting some wrapper classes for tar gz and tar z, I have looked into your sample program. Here is what I got in my class: ...... GZipOutputStream output = new GZipOutputStream(File.Create(fileName + ".tar.gz")); TarArchive tarFile = TarArchive.CreateOutputTarArchive(output); TarEntry...
Posted to
Forum
by
yorkw
on
10-16-2007
Filed under: tar untar ExtractContents PathTooLongException, #ZipLib, gzip
-
Hi, I tested the SharpZipLib and I find that this is a great tool. But there is a problem when I unzip a ZIP-file with only one zipped file inside. By using the following lines : Dim s As New ZipInputStream(File.OpenRead(Archive)) theEntry = s.GetNextEntry 'this line is include in a loop An error like...
Posted to
Forum
by
FrankB
on
09-19-2007
Filed under: File extraction, #ZipLib, Decompress ZIP VB.NET, ExtraData, deflate
-
Hi, I have an archive with some files in it. I want to use files from the archive directly without unziping them. I want to read files as streams. I use following code: -------------------------- public static Stream GetFileStreamFromArchive(string ArchivePath, string FileName) { ZipFile zip = new ZipFile...
Posted to
Forum
by
GDragoN
on
09-13-2007
Filed under: #ZipLib, sharpZipLib, Zip, zip ICSharpCode.SharpZipLib SharpZipLib, ZipFile
-
Hi I'm new to SharpZipLib so pleased excuse any crazy errors! I have to write a function to zip and password protect a single file. The following code works correctly - when run directly from a vb.net (2005) form. I can extract the zipped file from just windows compress folders, or 7-Zip file manger...
Posted to
Forum
by
lewin
on
09-05-2007
Filed under: #ZipLib, Decompress ZIP VB.NET, Zip password protection, ICSharpZip
-
Maybe its because I have been programming all day and a good portion of last night. But I keep bumping my head at this. Can someone suggest to me what I need to do to take a string which is the deflated file and then use #ziplib to inflate it and save it as its uncompressed file self. Any ideas... I...
Posted to
Forum
by
jasdever
on
08-24-2007
Filed under: #ZipLib, deflate
-
Have these changes been checked into subversion? There was a bug that was introduced in rev 341 that causes the zip files with pkzip encryption to become corrupted, and cannot be opened using winzip, winrar, etc. Works fine in rev 340. The file needs to be big-ish to get corrupted, like 100k+ -- head...
Posted to
Forum
by
Lamar
on
07-31-2007
Filed under: #ZipLib, Zip password protection
-
I can't seem to figure out how to add a file to an existing zip archive... my function: public void addFileToZip(string zipfile, string filename, byte[] filedata) { .... } i have tried with the ZipFile class and with ZipOutputStream...but I always end up with a corrupted archive or an archive with only...
-
Hello, My application is supposed to zip a temporary directory containing many subdirectories and files. Some of these files are being used (opened) by parts of my applications. It turns out, that these files are included in the zip archive, but with a file size of zero. Apparently the zipper cannot...
Posted to
Forum
by
Peter Wurmsdobler
on
07-23-2007
Filed under: #ZipLib, Zip, csharp zip creation bug, zip ICSharpCode.SharpZipLib SharpZipLib
-
We recently found an issue with the library when creating very large zip files. When the disk is out of space, a "System.IO.IOException: There is not enough space on the disk" exception is thrown. We have code in our finally block to call ZipOutputStream.Finish() followed by ZipOutputStream.Close() so...
Posted to
Forum
by
lataneal
on
07-16-2007
Filed under: #ZipLib, sharpZipLib, Zip, csharp zip creation bug, zip ICSharpCode.SharpZipLib SharpZipLib
-
Under some circumstances decompressing stream using Inflater class throws below exception: System.OverflowException was unhandled Message="Arithmetic operation resulted in an overflow." Source="ICSharpCode.SharpZipLib" StackTrace: at ICSharpCode.SharpZipLib.Zip.Compression.Inflater.DecodeChksum() in...
Posted to
Forum
by
Ivan R.
on
07-03-2007
Filed under: #ZipLib, csharp zip creation bug
|
|
|