1
私のコードは、複数の.zipファイル(appディレクトリ上のすべてのzipファイル)を解凍する必要があります。は一つだけのファイルがディレクトリに解凍するために、すべてのファイルを、それを変更する必要が解凍し
using (ZipFile zip = ZipFile.Read(file)) //Want to change "file" with directory (for unzip all zip files on that directory)
{
foreach (ZipEntry zipFiles in zip)
{
zipFiles.Extract(currentpath, true); //Also need overwrite silenthly
}
}
。単にforeachに変換することができます。私はコードを更新しました。 – vendettamit
Thanyあなたは@vendettamit。今働いている... –