该异常表示加载Revit模型或家族文件时无法找到所需的文件,可能是因为文件已被移动或重命名。
public FileNotFoundException(string message)
message
(String):异常信息描述。System.Exception
Autodesk.Revit.Exceptions.RevitException
Autodesk.Revit.Exceptions.FileNotFoundException
以下示例演示如何使用FileNotFoundException
异常:
try
{
Document doc = app.OpenDocumentFile("C:/Temp/myModel.rvt");
}
catch (FileNotFoundException ex)
{
Console.WriteLine("无法打开文档:" + ex.Message);
}