nils måsén
nils måsén
The only way to really fix this is by copying the ACLs using `System.Security.AccessControl`, but we would rather not keep that as a dependency. By creating the temporary file in...
**Update:** I did manage to add ACL management to the test above, and get it to pass by using the opposite of my suggestion: 1. Making a copy of the...
@loiwo But that only covers the inherited ACLs, not the explicit ones on the file itself. And if that is the only goal, why not creating the temporary file in...
That does seem to suggest that it merges the ACLs (given the `ignoreMergeErrors` param).
This is probably due to the internal buffering. It might be possible to just seek to the end of the deflated data here if the underlying stream supports it: https://github.com/icsharpcode/SharpZipLib/blob/06ff713469fd6e1c1cdd2ad3b364248e457a1b96/src/ICSharpCode.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs#L665-L668...
@tonyliving not until it has been released, no. If you want to try it out you can download the build artifact for this PR: https://github.com/icsharpcode/SharpZipLib/suites/6639150865/artifacts/250580285
No, It's mainly because of me being busy with work. Sorry.
@carlreid I fixed the conflict and there should be a new artifact to download. Also, I fixed the last PR that was blocking release, so it *should* be ready by...
Whoa, that sounds odd... How did you create that zip file? Zip files should never contain backslashes in the file names: https://p1k.se/appnote.md#s4.4.17.1 What is the output of `unzip -Z -l...
Yep, confirmed. Powershell 5 creates zip-files with the wrong directory separator: ``` ❯ unzip -Z -l test-ps5-wildcard.zip Archive: test-wildcard.zip Zip file size: 270 bytes, number of entries: 2 -rw---- 2.0...