在我的應用程序中,我有一個使用System.IO.Compression.ZipArchive
的zip存檔操作的類。 現在我想將檔案的條目保存到文件中。我怎樣才能做到這一點?我知道我可以一個Stream
與歸檔但對我來說存檔創建W/O流相關聯,我不能更改代碼:將ZipArchive保存到文件
var archive = ZipFile.Open(fileName, ZipArchiveMode.Create);
// add entries
// how can I save it to file now?
https://msdn.microsoft.com/en-us/library/hh485720(v=vs.110).aspx – Hackerman
請檢查這個答案: [stackoverflow](http://stackoverflow.com/a/12670368/6340841) –
感謝球員的答案,但不是我所需要的。正如我所說我使用'System.IO.Compression.ZipArchive',我不能改變它的另一個庫。 – folibis