C#使用Expand、Shell32解压Cab、XSN文件

前言:

  需要解压InfoPath表单的xsn文件,在项目中以前使用的是Expand命令行解压,都没有出过问题,近段时间项目中突然报错解压失败,通过分析解压操作得出结论:

    1.正常正常情况下,expand命令行解压没有任何问题,同一个站点,相同的请求,随机出现解压失败的错误。而且最容易复现的情况为:高频率刷新页面。

    2.监视解压的目标目录,解压失败的时候,目录没有任何变化。而解压成功时,目录监视则正常。

  然后将expand命令放到bat文件中,在bat文件中,执行expand命令之前,先执行 “md” 命令创建随机目录,C#代码代码执行bat命令,发现在解压失败的时候,bat命令即使执行完成,目录监视也没有发现md命令创建的目录。只能猜测C#在执行命令行的时候,某些情况下会存在不同步的情况。

  也没有时间专门去研究这个同步的问题,项目中有使用C#调用COM组件的地方,然后去网上搜了一下COM组件解压的cab文件的资料,发现使用shell32进行解压则没有问题。只是需要注意添加Shell32引用的方式:

  1.添加“Microsoft Shell Controls And Automation” 引用,如下图所示:

    

  2.生成项目,在bin目录下会生成“Interop.Shell32.dll”程序集,拷贝到其他目录,然后移除对Sell32的引用:

    

  3.添加对“Interop.Shell32.dll”程序集的引用,然后效果如下图所示:

    

  至于为什么要进行上述操作,是因为:直接添加对“Microsoft Shell...”的引用,代码生成之后在其他系统可能无法正常调用,如Win 2003 生成的无法在win2007上使用,但是通过上述方式引用之后,则可以了了。这样就可以正常使用Shell进行操作了。进行Shell操作的资料可以参考:http://www.fluxbytes.com/csharp/unzipping-files-using-shell32-in-c/

  最终代码整理如下:代码中也包括cmd命令行的方式,在此供参考。

代码:

public partial class Extract : System.Web.UI.Page

    {

        /// <summary>

        /// 要解压的文件名称

        /// </summary>

        private String XSNFileName = @"infopath.xsn";

        /// <summary>

        /// 解压到....  的目标路径

        /// </summary>

        private String TargetDirectory = @"C:\xsn";

        /// <summary>

        /// cab文件名称

        /// </summary>

        private String CabFileName = "cab.cab";

        protected void Page_Load(object sender, EventArgs e)

        {

            //使用cmd命令解压

            this.ExtractByCmd();

            //使用shell32进行解压

            this.ExtractByShell();

        }

        #region cmd命令解压

        /// <summary>

        /// 使用cmd命令进行解压

        /// </summary>

        private void ExtractByCmd()

        {

            //使用cmd命令:expand  sourcefile  targetDir  -F:*    

            //  上面的命令得注意:目标目录不能是sourceFile的目录。

            System.Text.StringBuilder sbString = new System.Text.StringBuilder();

            String tempDir = Guid.NewGuid().ToString();

            System.IO.Directory.CreateDirectory(System.IO.Path.Combine(this.TargetDirectory, tempDir));

            String cmdString = String.Format("\"{0}\" \"{1}\" -F:*", this.XSNFileName,tempDir);

            using (Process process = new Process())

            {

                process.StartInfo.FileName = "expand";

                process.StartInfo.WorkingDirectory = this.TargetDirectory;

                process.StartInfo.Arguments = cmdString;

                process.StartInfo.RedirectStandardInput = true;

                process.StartInfo.RedirectStandardOutput = true;

                process.StartInfo.RedirectStandardError = true;

                process.StartInfo.UseShellExecute = false;

                process.Start();

                process.WaitForExit();

                //this.Response.Write(process.StandardOutput.ReadToEnd());

            }

            System.IO.DirectoryInfo tempDirectory = new System.IO.DirectoryInfo(System.IO.Path.Combine(this.TargetDirectory, tempDir));

            sbString.Append("使用CMD命令进行解压:已经解压的文件:<br />");

            foreach (var item in tempDirectory.GetFiles())

                sbString.AppendFormat("{0} <br />", item.Name);

            this.Response.Write(sbString.ToString());

        }

        #endregion

        #region 使用shell解压

        /// <summary>

        /// 使用Shell解压

        /// </summary>

        private void ExtractByShell()

        {

            //shell能解压zip和cab文件,xsn文件是cab格式文件,但是需要注意直接使用后缀xsn解压会失败。此时需要重命名为cab即可

            //shell是支持要解压的文件和目标目录相同。

            //1.重命名

            String tempString=Path.Combine(this.TargetDirectory,this.CabFileName);

            if (File.Exists(tempString)) File.Delete(tempString);

            new FileInfo(Path.Combine(this.TargetDirectory, this.XSNFileName)).CopyTo(tempString);

            //2.解压

            Shell32.ShellClass shellClass = new Shell32.ShellClass();

            Shell32.Folder sourceFoloder = shellClass.NameSpace(Path.Combine(this.TargetDirectory, this.CabFileName));

            tempString = Path.Combine(this.TargetDirectory, Guid.NewGuid().ToString());

            Directory.CreateDirectory(tempString);

            Shell32.Folder targetDir = shellClass.NameSpace(tempString);

            foreach (var item in sourceFoloder.Items())

                targetDir.CopyHere(item, 4);

            //各个参数的含义,参照:http://www.fluxbytes.com/csharp/unzipping-files-using-shell32-in-c/

            DirectoryInfo tempDire = new DirectoryInfo(tempString);

            System.Text.StringBuilder sbString = new System.Text.StringBuilder();

            sbString.Append("<br /><br /><hr />使用Shell32进行解压。已经解压的文件:<br />");

            foreach (var item in tempDire.GetFiles())

                sbString.AppendFormat("{0} <br />", item.Name);

            this.Response.Write(sbString.ToString());

        }

        #endregion 

    }

  最终测试结果如下:

使用CMD命令进行解压:已经解压的文件:
manifest.xsf
sampledata.xml
schema.xsd
template.xml
view1.xsl 

使用Shell32进行解压。已经解压的文件:
manifest.xsf
sampledata.xml
schema.xsd
template.xml
view1.xsl

  

  在出问题的项目服务器上,使用shell32的方式进行xsn文件解压,测试后发现没有任何问题,即使高频率重复刷新。

  以上只是项目中遇到的实际情况阐述,并不一定是最好的解决方案,如果大家更好的方案,请留言。

时间: 2024-10-25 19:05:09

C#使用Expand、Shell32解压Cab、XSN文件的相关文章

linux下使用unrar命令解压*.rar格式文件

下载 http://www.rarlab.com/download.html下载相应的版本 安装 [[email protected] ~]$ cat /etc/redhat-release Fedora release 24 (Twenty Four)[[email protected] ~]$ uname -r4.8.15-200.fc24.x86_64 tar zxvf rarlinux-x64-5.4.0.tar.gzcd rarmakemake install 使用帮助 [[email

C# .NET 使用第三方类库DotNetZip解压/压缩Zip文件 (ZT)

DotNetZip on CodePlex: http://dotnetzip.codeplex.com/ 详细的可以看源代码--总之感觉比SharpZipLib好用.而且DotNetZip支持VB,C#以及任何.NET语言. 加压:(从CodePlex上偷过来的) using (ZipFile zip = new ZipFile()) { // add this map file into the "images" directory in the zip archive 把这个PN

[Linux] 解压tar.gz文件,解压部分文件

遇到数据库无法查找问题原因,只能找日志,查找日志的时候发现老的日志都被压缩了,只能尝试解压了   数据量比较大,只能在生产解压了,再进行查找 文件名为*.tar.gz,自己博客以前记录过解压方法: http://www.cnblogs.com/garinzhang/archive/2013/04/23/3037147.html 使用tar –zxvf *.tar.gz无法解压,明明好好的tar.gz文件能这样解压的,为什么不能解压?   后来想了想,是不是先要解压*.gz文件,使用gunzip

C#利用SharpZipLib解压或压缩文件夹实例操作

最近要做一个项目涉及到C#中压缩与解压缩的问题的解决方法,大家分享. 这里主要解决文件夹包含文件夹的解压缩问题. )下载SharpZipLib.dll,在http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx中有最新免费版本,“Assemblies for .NET 1.1, .NET 2.0, .NET CF 1.0, .NET CF 2.0: Download [297 KB] ”点击Download可以下载,解压后里边

[教程] wdcp文件管理器里不能删除或移动解压后的文件解决方法

问题:在本地上传压缩包到服务器之后,在wdcp文件管理器里解压,解压之后想把文件移动到其他目录,填写好移动的目标目录之后点移动,显示移动成功,但到目标目录却发现没有自己所移动的文件,文件不知道消失到哪里去了:再看原本解压后的文件夹里也没有文件. 解决方法:看看是不是自己的压缩前的文件夹里有文件名或文件夹名包含中文字符,把他改成英文后再压缩上传,解压之后移动就没问题了:同样,删除不了的文件也可能是你文件名里包含了中文,甚至上传解压之后的文件名已经不是正常中文了,而是乱码! 转自:http://ww

zend framework将zip格式的压缩文件导入并解压到指定文件

html代码 <pre class="php" name="code"><fieldset> <legend>批量导入学生照片</legend> <form enctype="multipart/form-data" action="/Import/importstuimg" method="post"> 导入照片压缩包文件:<input v

解压tar.gz文件报错gzip: stdin: not in gzip format解决方法

解压tar.gz文件报错gzip: stdin: not in gzip format解决方法 在解压tar.gz文件的时候报错 1 2 3 4 5 [[email protected] Downloads]$ tar -zxvf clion-141.351.4.tar.gz gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原来原因是这个

linux ubuntu12.04 解压中文zip文件,解压之后乱码

在windows下压缩后的zip包,在ubuntu下解压后显示为乱码问题 1.zip文件解压之后文件名乱码: 第一步 首先安装7zip和convmv(如果之前没有安装的话) 在命令行执行安装命令如下: sudo apt-get install p7zip-full convmv 第二步 假设zip文件名为y05文档.zip,那么先进入zip文件所在的目录,然后命令行执行 LANG=C 7z x y05文档.zip convmv -f cp936 -t utf8 -r --notest * 2.文

IOS开发—图片压缩/解压成Zip文件

图片压缩/解压成Zip文件 本文介绍如何将图片压缩成Zip文件,首先需要下载第三方库ZipArchive 并导入项目中. ZipArchive 库地址:https://github.com/mattconnolly/ZipArchive 一.文档结构: 二.准备工作: 1.框架导入: 2.ZipArchive.m文件使用非ARC机制 三.代码示例: // // ViewController.m // UnzipImgDemo // // Created byLotheve on 15/4/10.