使用open xml 判断sharepoint文档是否损坏

Posted (百陌千回)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用open xml 判断sharepoint文档是否损坏相关的知识,希望对你有一定的参考价值。

方式:

使用 open xml的open 方法直接对文件进行打开操作,可以根据出现的异常类型进行判断,

下面的方式省略这部分(默认只要打不开就认为文件有问题)

            bool isCorrupted = false;
            // Insert some text into the body, this would cause Schema Error
            try
            {
                using (WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(stream, true)) //(filepath, true) stream type is Stream
                {
                }
            }
            catch
            {
                isCorrupted = true;
            }

以上是关于使用open xml 判断sharepoint文档是否损坏的主要内容,如果未能解决你的问题,请参考以下文章

sharepoint 2007 You do not have permissions to open this file on Excel Services

使用 Open XML 操作文档模板自动生成报表

将多个word文档合并为一个Open Xml

word文档关闭后再打开出现“office open xml 错误”怎么办啊

Office Open XML SDK 换词

你好,我的word文档出现“无法打开office open xml”问题,求解决