最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - Can't open a file with Process - Stack Overflow

programmeradmin0浏览0评论

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}");
     }
 }
发布评论

评论列表(0)

  1. 暂无评论