Open fatihsoydan opened 1 year ago
I found a comment about my issue :
1) 7-zip writes 7z header at start of archive (at first volume) at the end of operation. 2) The code that creates volumes doesn't know what exact seek and write operations are required for 7z code. So it keeps all volumes open. For example, zip code requires another seek and write operations (writing to any volume). No way to fix it now. Maybe there is way to ignore open-lock with some special program. In that case you can try to remove any volume except of volume .7z.001.
I wrote a project with Golang describing what I need.
https://github.com/fatihsoydan/gzip2parts
I will use this project as process for solving my problem (just temporary).
But I think, there are a lot of people working with big files. If we can add this future in SevenZipSharp repository that will be fantastic.
Hello, I am trying to write a project that uploads big folder. I am compressing to volumes. When a volume file completed, I want to start upload. I guess, but It is exclusively opened for writing until the compression fully completed. So when I want to upload last completed volume, windows couldn't access the volume file.
Could we close the finished parts ?
Here is my code :