首页 > 代码库 > 使用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文档是否损坏
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。