Hello.
I had a problem using FastZip to compress .log files that are written by another process.
To solve the problem in FastZip.cs, line 492, i have changed the instruction:
FileStream stream=File.OpenRead(e.Name)
with:
FileStream stream=File.Open(e.Name, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)
In this way the file can be open even if the files is accessed in read/write by another process.
A question: will you plan to insert that change in the next release?
Thanks for the product,
Fabio Borlenghi