在mvc中使用WordprocessingDocument打开文档

时间:2015-06-18 12:33:01

标签: c# asp.net-mvc

我正在使用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;
    }

问题是什么?

0 个答案:

没有答案