我想为我为 asp.net 站点创建的插件创建一个 zip 提取器。我希望客户端能够运行提取器,并将文件放入我指定的正确文件夹中。有什么工具可以做到这一点吗?我不知道如何做到这一点,谢谢

最佳答案

DotNetZip 是一个允许托管代码应用读取或写入 zip 文件的库。它允许您做的一件事是生成自解压存档 (SFX)。

在 C# 中,使用 DotNetZip 生成 SFX 存档的代码如下所示:

using (ZipFile zip1 = new ZipFile())
{
    // zip up a directory
    zip1.AddDirectory("C:\\project1\\datafiles", "data");
    zip1.Comment = "This will be embedded into a self-extracting exe";
    zip1.AddEntry("Readme.txt", "This is content for a 'Readme' file that will appear in the zip.");
    zip1.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.WinFormsApplication);
}

您可以选择如何塑造 ZIP 文件中的文件夹层次结构。唯一的规则是,在提取时,提取发生在特定的根文件夹或父文件夹中。 (您无法提取到分散在文件系统中的 7 个不同目录)

生成的 EXE 需要 .NET Framework 2.0 或更高版本才能运行,但仅此而已。

SFX/EXE 也是一个常规的 Zip 文件,您可以使用 WinZip 或其他 zip 工具(包括 Windows 资源管理器“压缩文件夹”)读取和提取该文件。

SFX 与其他 zip 功能组合在一起,包括
  • WinZip AES 加密 - 这样您就可以对事物进行加密,并且只允许知道密码的人解压。
  • ZIP64 用于非常大的文件。
  • Unicode,用于正常 ~ASCII 范围之外的文件名。
  • 恢复文件属性、时间戳等。

  • 在 DotNetZip 中,您可以生成两种可能的 SFX 风格:控制台应用程序或 WinForms 应用程序。 WinForms UI 是为您生成的 - 无需编写或设计。它简单实用,看起来像这样:

    .net - 创建一个 zip 提取器-LMLPHP

    控制台风格更适合在脚本或 headless (无 UI)场景中使用。

    制作 SFX 时有很多选项,例如:
  • 解压后是否打开资源管理器
  • 解包后执行的命令(该命令可以是解包内容的一部分)
  • 可选择在“解压时执行”命令成功完成后删除所有文件。不错的补丁实用程序。
  • 是否覆盖现有文件
  • 用于 SFX EXE 的 Win32 图标,或者只接受默认的
  • 一个默认的解压目录,可以基于用户的环境,例如%USERPROFILE%。
  • “安静”模式,这意味着当它运行时,如果您使用的是控制台应用程序,它要么根本不提供 UI,要么如果使用 WinForms 风格,则仅提供一个简单的进度条。没有可单击的按钮 - 此 SFX 只是自动解压缩。

  • 所有这些关于 SFX 行为方式的选项都可以通过 DotNetZip 类库接口(interface)访问。

    如果您不喜欢内置 SFX 功能的 UI 或工作模型,有一种简单的方法可以提供您自己的自解压器 UI + 逻辑。例如,您可以在 WPF 中构建一个应用程序,并使其变得时髦且视觉上充满活力。它的工作方式非常简单:在生成 SFX 的代码中,将解压缩 stub EXE(WinForms、WPF 或其他)复制到输出流,然后不关闭流,将 Zip 文件保存到同一个流.在 VB 中看起来像这样:
    Public Shared Function Main(ByVal args As String()) As Integer
        Dim sfxStub As String = "my-sfx-stub.exe"
        Dim outputFile As String = "my-sfx-archive.exe"
        Dim directoryToZip As String = "c:\directory\to\ZIP"
        Dim buffer As Byte() = New Byte(4000){}
        Dim n As Integer = 1
        Using output As System.IO.Stream = File.Open(outputFile, FileMode.Create)
            '' copy the contents of the sfx stub to the output stream
            Using input As System.IO.Stream = File.Open(sfxStub, FileMode.Open)
                While n <> 0
                    n = input.Read(buffer, 0, buffer.Length)
                    If n <> 0 Then
                        output.Write(buffer, 0, n)
                    End If
                End While
            End Using
            '' now save the zip file to the same stream
            Using zp As New ZipFile
                zp.AddFiles(Directory.GetFiles(directoryToZip), False, "")
                zp.Save(output)
            End Using
        End Using
    End Function
    

    此代码创建的结果文件既是 EXE 又是 ZIP 文件。 stub EXE 必须从自身读取才能提取。在上面的示例中,my-sfx-stub.exe 程序的代码可能像这样简单:
    Dim a As Assembly = Assembly.GetExecutingAssembly
    Try
        '' read myself as a zip file
        Using zip As ZipFile = ZipFile.Read(a.Location)
            Dim entry As ZipEntry
            For Each entry in zip
                '' extract here, or add to a listBox, etc.
                '' listBox1.Items.Add(entry.FileName)
            Next
        End Using
    Catch
        MessageBox.Show("-No embedded zip file.-")
    End Try
    

    以这种简单方式构建的自定义 SFX 将依赖于 DotNetZip DLL。为避免这种情况,并生成一个独立的 EXE,无需额外的 DLL 依赖项即可提取,您可以使用 ILMerge 或嵌入资源中的 embed the DotNetZip DLL as a resource and use an AssemblyResolver event to load it

    如果您有任何问题,可以在 the DotNetZip forums 上提问。

    关于.net - 创建一个 zip 提取器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1578823/

    10-13 04:32