コード例 #1
0
ファイル: DynamoCommands.cs プロジェクト: hipigod/Dynamo
 private void SaveRecordedCommands(object parameters)
 {
     if (null != automationSettings)
     {
         string xmlFilePath = automationSettings.SaveRecordedCommands();
         if (string.IsNullOrEmpty(xmlFilePath) == false)
         {
             if (System.IO.File.Exists(xmlFilePath))
             {
                 System.Diagnostics.Process.Start(xmlFilePath);
             }
         }
     }
 }