如何使用c#解压缩docx文件
本文关键字:docx 文件 解压缩 何使用 | 更新日期: 2023-09-27 18:02:23
如何使用c#解压缩docx文件?
新的Office文件扩展名(docx,potx,xlsx等)在上传到web服务器然后下载时变成zip文件。
这些文件格式现在使用Open XML文件格式系统,因此它们与Google、Open office等其他办公程序更兼容。从本质上讲,它们是充满XML文件的zip文件,当用适当的应用程序打开时,它们会变成友好的word文档。
我从这里偷了这篇充满羞耻的文章,你可以在这里找到完整的信息。
我希望这个答案能帮助到你和所有无知的人,他们取笑你,在不知道答案的情况下对你的问题投反对票。
如果你指的是docx
文件,它们基本上只是用特定约定创建的zip
文件。
这是您正在寻找的完整代码。我已经将这个类用于docx zip和unzip操作。
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Deployment.Compression;
using Microsoft.Deployment.Compression.Zip;
namespace <YourPackage>.Libs
{
public class ZipFile
{
private string _zipfilepath;
public ZipFile(string zipfilepath)
{
_zipfilepath = zipfilepath;
}
public void Compress(string filePath,bool deleteSourceFolder)
{
var filePaths = new List<string>();
if (Directory.Exists(filePath))
{
filePaths.AddRange(Directory.GetFileSystemEntries(filePath).ToList());
}
if (filePaths.Count > 0)
{
var zip = new ZipInfo(_zipfilepath);
zip.Pack(filePath, true, CompressionLevel.None, null);
}
if(deleteSourceFolder)
Directory.Delete(filePath,deleteSourceFolder);
}
public void Uncompress(string destinationPath)
{
var zip = new ZipInfo(_zipfilepath);
zip.Unpack(destinationPath);
}
}
}
设置System.IO.Compression和System.IO.Compression. filesystem的引用。然后像这样:
using System.IO.Compression;
string zipPath = @"c:'tmp'Test.docx";
using (ZipArchive archive = ZipFile.OpenRead(zipPath))
{
archive.ExtractToDirectory(zipPath + ".unzipped");
}
请看这里:https://msdn.microsoft.com/EN-US/library/hh485709(v=VS.110,d=hv.2).aspx (ZipFileExtensions.;)ExtractToDirectory方法)
您可以尝试使用system . io . packaging . zipppackage .
安装Open XML SDK http://www.microsoft.com/en-us/download/details.aspx?id=5124并使用它来处理Docx文件中的XML