0

解凍したファイルを解凍しました。複数のファイルを含むファイルを解凍できるようにするために、asp.net mvc 3アプリでどのようにどのライブラリにアクセスしますか?

私のコントローラーコード:

 public ActionResult Upload(ScormUploadViewModel model)
{
  if (ModelState.IsValid)
  {
    if (model.ScormPackageFile != null)
    {
      string zipCurFile = model.ScormPackageFile.FileName;
      string fullPath = Path.GetDirectoryName(zipCurFile);
      string directoryName = Path.GetFileNameWithoutExtension(zipCurFile);
      Directory.CreateDirectory(Path.Combine(fullPath, directoryName));

      using (FileStream zipFile = new FileStream(zipCurFile, FileMode.Open))
      {
        using (GZipStream zipStream = new GZipStream(zipFile, CompressionMode.Decompress))
        {
          StreamReader reader = new StreamReader(zipStream);  
         //next unzip the file? how to get the library i need?
        }
      }

ありがとう

4

0 に答える 0