Daniel Nash

Results 6 comments of Daniel Nash

Latest SharpCompress code produces identical results for ReaderFactory and ArchiveFactory, so it appears this can be closed out.

There is an extra two bytes at the end of the first Local Entry header, `0x03 0x00`, that occur before the Post Data Descriptor header. The ZipReader reads the next...

I agree that 7zip is probably just using the CD. However, if they were streaming it in for some reason, it appears 7zip reads the local header and, then, if...

Ah, I think I see what it is. For some reason, the Apache library is writing out 2 bytes for a directory. No idea what those represent; still puzzling through...

The fact it can extract any entries at all implies it has at least some zip headers in it, even if `IsZipFile` returns false. This seems too specific to the...

If you are working with a set of files in a directory, we found this works really well: ``` public static void TarGzDirectory(string inputDirectory, string outputFilePath) { var writerOptions =...