首页 > 代码库 > 使用open xml 判断sharepoint文档是否损坏

使用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文档是否损坏