Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Zip 文件中创建文件?
假设我有一个文件abc.zip并想在其中创建一个名为SomeFile.txt. 是否可以?[我正在使用有助于 Zip 文件操作的 dll Ionic.Zip]。另外,我想在不解压缩的情况下执行此操作。
abc.zip
SomeFile.txt
当然。例如,如果您已经创建SomeFile.txt:
using (var zip = ZipFile.Read("abc.zip")) { zip.AddFile("SomeFile.txt"); zip.Save(); }
在 .NET 中使用 Zip 文件