如何将物理 zip 文件转换为 System.IO.Stream 对象?我试过了 -
System.IO.Stream stream = File.ReadAllBytes(Path + "\\" + "ZipFile.zip");
StreamReader stream = new StreamReader(Path + "\\" + "ZipFile.zip");
System.IO.Stream stream = new FileStream(Path + "\\" + "ZipFile.zip", FileMode.Open); stream.Close();
他们似乎都没有工作。
尝试读取流时,它要么说流不可读,
要么文件在目的地似乎损坏并且无法解压缩