Questions tagged «ziparchive»

19
致命错误:找不到类“ ZipArchive”
我有一个问题,我在Linux服务器上安装了“ Archive_Zip 0.1.1”,但是当我尝试运行脚本来创建zip文件时,却出现了致命错误 致命错误:ZipArchive在...中找不到类 我把代码放在哪里 $zip = new ZipArchive; var_dump($zip); $res = $zip->open($filename, ZipArchive::OVERWRITE); if ($res !== TRUE) { echo 'Error: Unable to create zip file'; exit; } if (is_file($src)) { $zip->addFile($src); } else { // echo "<br>" . dirname(__FILE__) . $src;//'/install1'; if (!is_dir($src)) { $zip->close(); @unlink($filename); echo 'Error: File …
179 php  zip  ziparchive 

9
使用System.IO.Compression在内存中创建ZIP存档
我正在尝试使用一个简单的演示文本文件创建一个ZIP存档,MemoryStream如下所示: using (var memoryStream = new MemoryStream()) using (var archive = new ZipArchive(memoryStream , ZipArchiveMode.Create)) { var demoFile = archive.CreateEntry("foo.txt"); using (var entryStream = demoFile.Open()) using (var streamWriter = new StreamWriter(entryStream)) { streamWriter.Write("Bar!"); } using (var fileStream = new FileStream(@"C:\Temp\test.zip", FileMode.Create)) { stream.CopyTo(fileStream); } } 如果运行此代码,则会创建存档文件本身,但不会创建foo.txt。 但是,如果我MemoryStream直接用文件流替换,则会正确创建存档: using (var fileStream …
179 c#  .net  zip  compression  ziparchive 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.