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.
我的本地设备中有 .mdf 和 .ldf 文件。我想创建两个文件的 zip。我使用 DonetZip。但它没有向我显示任何错误,而且程序也无法正常工作。我应该怎么做,我想要一些示例来压缩 .mdf 和 .ldf 文件。
怎么样
using (ZipFile zip = new ZipFile()) { zip.AddFile(@"C:\SomeFile.mdf"); zip.AddFile(@"C:\SomeFile.ldf"); zip.Save(@"C:\zippedfolder.zip"); }