I'm trying to open a Revit file via WPF app. The problem is I can open Revit.exe without specify a revit file. However, when I specify a revit file for Revit.exe, it doesn't work. Here is my code
private void btn_Open_Click(object sender, RoutedEventArgs e)
{
// a path to Revit.exe
string revitPath = @"C:\Program Files\Autodesk\Revit 2022\Revit.exe";
string revitFilePath = @"D:\TestingApp\Dev Revit files\2022\TestingProject.rvt";
try
{
Process process = new Process();
process.StartInfo.FileName = revitPath;
process.StartInfo.Arguments = revitFilePath;
process.Start();
}
catch (Exception ex)
{
MessageBox.Show($"Can't open this file {ex.Message}");
}
}