C# を使用して、Asp.net 2.0 の zip フォルダーからファイルを読み取りたいです。実際に私はこのようなものが欲しい:
using (ZipFile zip = ZipFile.Open(@"E:\MyZipFolder.ZIP", FileAccess.Read))
{
// Read the central directory collection
List<ZipFile.ZipFileEntry> dir = zip.ReadCentralDir();
// Look for the desired file
foreach (ZipFile.ZipFileEntry entry in dir)
{
if (Path.GetFileName(entry.FilenameInZip) == "MyZipFile.jpg")
{
// File found, extract it
zip.ExtractStoredFile(entry, @"E:\ExtractFolder\MyZipFile.jpg");
break;
}
}
}
ZipFile が不明です。何か提案はありますか?