使用独立的exe文件提取 - C#

时间:2016-05-13 15:18:02

标签: c# .net c#-4.0 zip extract

我正在尝试使用ssis中的C#脚本解压缩文件。 我最初使用IonicZip.dll来完成它,如下所示,它工作正常。

private string ExtractFileToDirectory(string strSourceDirectory, string strDestinationDirectory, string strFileName)
{
    string extractFileName = String.Empty;
    try
    {

        ZipFile zip = ZipFile.Read(Path.Combine(strSourceDirectory ,strFileName));
        Directory.CreateDirectory(strDestinationDirectory);
        foreach (ZipEntry e in zip)
        {
            e.Extract(strDestinationDirectory, ExtractExistingFileAction.OverwriteSilently);
            extractFileName = e.FileName;
        }
        zip.Dispose();
        return extractFileName;

    }
    catch 
    {
        //
    }
}

但是,我没有权限在服务器中部署dll。所以我切换到7Za.exe(独立的exe)。中途我意识到它只支持7z,cab,zip,gzip,bzip2,Z和tar格式。我需要压缩的文件没有任何扩展名。

有没有办法用独立的exe提取文件?我在ssis中使用C#4.0。

我的7zip代码是

string str7ZipPath = @"C:\Tools Use\7zip";
string str7ZipArgs = "a -tzip "+ @"""C:\Source\FileA"""+ @"  ""C:\Zip\*.*""";

ProcessStartInfo psi = new ProcessStartInfo();
psi.CreateNoWindow = false;
psi.UseShellExecute = false;
psi.FileName = str7ZipPath + "\\7za.exe";
psi.WindowStyle = ProcessWindowStyle.Normal;
psi.Arguments = str7ZipArgs;


try
{
    using (Process proc = Process.Start(psi))
    {
        proc.WaitForExit();
    }
}
catch (Exception ex)
{

}

1 个答案:

答案 0 :(得分:1)

要压缩/解压缩文件,您可以,因为.NET Framework 4.5使用System.Io.Compression.ZipFile类。

但是,如果您不能使用此.Net Framework的版本,则必须在程序集中嵌入一个dll:

您可以将dll添加到项目中,并将构建操作设置为Embedded Resource

然后,您必须订阅应用程序的AssemblyResolve事件,以便从应用程序嵌入资源中手动加载dll。

示例:

AppDomain.CurrentDomain.AssemblyResolve += (sender, args) => 
     {
          String resourceName = “<YourAssemblyName>.” +
               new AssemblyName(args.Name).Name + “.dll”;
          using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName)) 
          {
               Byte[] assemblyData = new Byte[stream.Length];
               stream.Read(assemblyData, 0, assemblyData.Length);
               return Assembly.Load(assemblyData);
          }
     };

杰弗里里希特在这里你可以做一个更详细的解释(我从那里倾斜了这个伎俩):https://blogs.msdn.microsoft.com/microsoft_press/2010/02/03/jeffrey-richter-excerpt-2-from-clr-via-c-third-edition/

您可以尝试使用ILMerge。 它有一些限制,但在某些项目中阻止它是不可能的