C# 将doc转换为docx

清理收藏夹。

介绍

虽然现在office 的版本已经很高了,而且新的word都是使用的docx格式了,但是仍然还是存在doc格式的使用情况。尤其是对于一些旧的系统,这些系统的导出格式仍然是doc格式。而如果你需要进行word文档的相关操作------如导入,那么doc格式就不是那么的友好了。曾在度娘中找了很多资料,最后还是曲线救国,使用doc转docx后在导入word内容。

不多说了,直接上代码才最实在

cs 复制代码
 public void TranWordDocToDocx(string pathinfo, string file)
 {
            Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
            Microsoft.Office.Interop.Word.Document doc = new Microsoft.Office.Interop.Word.Document();
            object oMissing = System.Reflection.Missing.Value;
 
            Object ConfirmConversions = false;
            Object ReadOnly = false;
            Object AddToRecentFiles = false;
 
            Object PasswordDocument = "";
            Object PasswordTemplate = System.Type.Missing;
            Object Revert = System.Type.Missing;
            Object WritePasswordDocument = System.Type.Missing;
            Object WritePasswordTemplate = System.Type.Missing;
            Object Format = System.Type.Missing;
            Object Encoding = System.Type.Missing;
            Object Visible = System.Type.Missing;
            Object OpenAndRepair = System.Type.Missing;
            Object DocumentDirection = System.Type.Missing;
            Object NoEncodingDialog = System.Type.Missing;
            Object XMLTransform = System.Type.Missing;
 
            Object fileName = pathinfo + "\\" + file;
            doc = word.Documents.Open(ref fileName, ref ConfirmConversions,
            ref ReadOnly, ref AddToRecentFiles, ref PasswordDocument, ref PasswordTemplate,
            ref Revert, ref WritePasswordDocument, ref WritePasswordTemplate, ref Format,
            ref Encoding, ref Visible, ref OpenAndRepair, ref DocumentDirection,
            ref NoEncodingDialog, ref XMLTransform);
 
 
            DirectoryInfo directory = new DirectoryInfo(pathinfo + "\\docx");
            if (!directory.Exists)//不存在
            {
                directory.Create();
            }
 
            object path = pathinfo + "\\docx\\" + file.Substring(0, file.Length - 4);
            object format = Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatDocumentDefault;
            doc.SaveAs(ref path, ref format, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
            doc.Close(ref oMissing, ref oMissing, ref oMissing);
            word.Quit(ref oMissing, ref oMissing, ref oMissing);
 }

以上代码中,第一个参数pathinfo表示doc文档的文件夹路径,第二个参数file表示word文件的名称。从方法的调用上说,需要选择doc文档所在的文件夹,然后可以在此文件夹下创建(如果没有)一个新的docx文件夹,用以保存转换后的word文件。

而对于调用的方式,这里给一个dome,如下

cs 复制代码
DirectoryInfo folder = new DirectoryInfo(this.txtDocPaths.Text);
foreach (FileInfo file in folder.GetFiles("*.doc"))
{
    if (file.ToString().IndexOf("$") == -1)
    {
        this.lblMsg.Text = string.Format("当前处理的文件:{0}", file.FullName);
        this.lblMsg.Refresh();
        TranWordDocToDocx(this.txtDocPaths.Text, file.ToString());
    }
}

doc转docx的核心方法,大家也可根据实际项目中的需要进行调整!


https://blog.csdn.net/mzl87/article/details/102625239

相关推荐
小羊没烦恼!9 小时前
初探性能优化——2个月到4小时的性能提升
java·开发语言·windows·算法·c#
神仙别闹9 小时前
基于C#+MySQL实现(WinForm)个人聊天室软件
c#
伞伞悦读10 小时前
【第38期】Python 模块与包详解:import、from、模块搜索路径、包结构和 __init__
开发语言·python
C语言小火车11 小时前
C/C++ 为什么需要编译器?
开发语言·c++
霍霍的袁11 小时前
【C++】map 和 set 的使用 | 从用法到底层
开发语言·c++·学习·visual studio
kybs199112 小时前
全球灾害数据分析可视化 毕业设计-附源码66794
vue.js·spring boot·mysql·安全·django·c#·asp.net
孙启超12 小时前
【AI开发之Rust】第 11 课:智能指针与内部可变性
开发语言·后端·rust
此生决int12 小时前
深入理解C++系列(20)——C++11(下)
开发语言·c++
CoderYanger13 小时前
A.每日一题:835. 图像重叠
java·开发语言·程序人生·leetcode·面试·职场和发展·学习方法
伞伞悦读14 小时前
【第37期】Python JSON 与配置详解:序列化、反序列化、嵌套结构和配置文件
开发语言·python·json