使用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