我正在使用WordprocessingDocument打开doc文件。 但是如果文件没有被破坏仍然会进入catch部分.. 这是代码:
bool savedSuccesfully = false;
if (System.IO.File.Exists(path[0])) //path[0] is doc file path
{
try
{
using (WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(path[0], true)) //FROM this line it goes to catch part
{
savedSuccesfully = true;
}
}
catch (Exception ex)
{
savedSuccesfully = false;
}
问题是什么?