DotNetZip の最新バージョンを使用しており、5 つの XML を含む zip ファイルがあります。
zip を開き、XML ファイルを読み取り、XML の値を文字列に設定します。
これどうやってするの?
コード:
//thats my old way of doing it.But I needed the path, now I want to read from the memory
string xfile = System.IO.File.ReadAllText(strNewFilePath, System.Text.Encoding.Default);
using (ZipFile zip = ZipFile.Read(this.uplZip.PostedFile.InputStream))
{
foreach (ZipEntry theEntry in zip)
{
//What should I use here, Extract ?
}
}
ありがとう