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.
我正在使用 Ionic.Zip,如何从目录所在的 zip 文件中提取文件。
foreach (ZipEntry entry in zip) { if (entry.IsDirectory) { entry.Extract(extractPath); var s = entry.ExtractExistingFile; } }