|
Browse by Tags
All Tags » sharpZipLib » #ZipLib ( RSS)
-
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
-
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
-
I am using SharpZipLib.Zip.FastZip in a project and the ExtractZip method seems to work as intended without any error messages but oddly, it skips files. I am running Windows Vista, the same code compiled on another machine works without any problems. After a quick test with some filetypes it looks like...
Posted to
Forum
by
elaubsch
on
06-18-2007
Filed under: #ZipLib, sharpZipLib, Zip
-
Hi! this is my first post in this forum, I use SharpZipLib (vers 0.85) in my Pocket PC project. I create a simple method that I invoke on button click. This is the code: public static void zippa(string source, string dest) { try { string[] filenames = Directory.GetFiles(source); using (ICSharpCode.SharpZipLib...
Posted to
Forum
by
gas12
on
03-16-2007
Filed under: Using #ZipLib, #ZipLib, sharpZipLib, csharp zip creation bug
-
Hi, SharpZipLib is great, but I am having a problem reading a zip file produced by the java.util.zip package (not sure which version of Java, probably 1.4). The java produced file does not have bit 11 (UnicodeText) set in the GeneralBitFlags, but in the name and comment fields it does have UTF-8 text...
Posted to
Forum
by
Bruce Cowan
on
03-15-2007
Filed under: #ZipLib, Invalid characters, sharpZipLib
-
I had the same problem in the ZipInputStream.cs and ZipOutputStream.cs CRC's. In the ZipInputStream public ZipEntry GetNextEntry() I added if ((flags & 8) == 0) { entry.Crc = crc2 & 0xFFFFFFFFL; entry.Size = size & 0xFFFFFFFFL; entry.CompressedSize = csize & 0xFFFFFFFFL; int checkVal...
Posted to
Forum
by
CZahrobsky
on
02-23-2007
Filed under: #ZipLib, sharpZipLib, Zip files for download
-
Hello My system is MS Windows XP prof (Hungarian) If filenames with special charaters like éáöüóí... compress than the process is seccesfull, but the characters change. filename "Katalógizáló" stored as "Katalˇgizßlˇ". How can I store the correct filenames ?
Posted to
Forum
by
Sweetchack
on
02-11-2007
Filed under: #ZipLib, sharpZipLib
-
Dear John Reilly, I just downloaded 0851_ICSharpCode.SharpZipLib_20.zip but the SharpZipLib.chm (i.e. compiled html help file) does not seem to contain any help content. No matter which class I click on the left pane, I got " The page cannot be displayed" in the right pane. Any idea on why it does not...
Posted to
Forum
by
yhao8
on
01-11-2007
Filed under: Using #ZipLib, ZipInputStream, #ZipLib, sharpZipLib, Zip
-
Hi all, I seem to have a problem with SharpZipLib where my iteration through the contents of an archive with GetNextEntry() skips over many of the contents. Is GetNextEntry the only method to use to iterate though the contents of an archive (when intending to read some of those contents when certain...
Posted to
Forum
by
Todd McDermid
on
01-01-2007
Filed under: Using #ZipLib, File extraction, ZipInputStream, #ZipLib, sharpZipLib, Zip
-
Hi, How can I add directories? Running the following code results in an exception: string root = <root_dir>; ZipFile zipFile = ZipFile.Create(filename); zipFile.BeginUpdate(); string[] files = Directory.GetFiles(root); foreach (string file in files) { FileAttributes attr = File.GetAttributes(file...
Posted to
Forum
by
puce
on
12-21-2006
Filed under: Using #ZipLib, #ZipLib, ZipException, Zip64, zip ziplib subfolder, sharpZipLib
|
|
|