123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using SAGA.DotNetUtils.Revit;
- using System;
- using System.Diagnostics;
- using System.IO;
- using Newtonsoft.Json.Linq;
- using SAGA.DotNetUtils.Extend;
- namespace StartVisionSelector
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- string command = null;
- string param = null;
- string path = null;
- if (args.Length > 0)
- {
- command = args[0];
- }
- if (args.Length > 1)
- {
-
- param = args[1].Replace("\"", "\\\""); ;
- }
- if (args.Length > 2)
- {
- path = args[2];
- }
- #if DEBUG
- if (string.IsNullOrWhiteSpace(command))
- {
- command = "DataExport";
- path = @"E:\导出测试\testR17.rvt";
- path = @"E:\导出测试\TestEmptyR17.rvt";
- JObject jObject = new JObject();
- jObject.Add("ResultFileName", @"C:\Users\SAGACLOUD\AppData\Local\RevitService\Result_e26be2fd-2097-462b-bdd0-a2a86b616928.txt");
- param = jObject.ToString().Replace("\"","\\\"");
-
-
-
-
-
-
- }
- #endif
- Console.WriteLine("start");
- #region 保存版本号
-
- var runPath = AppDomain.CurrentDomain.BaseDirectory;
- var revitVision = RevitVisionUtil.GetRevitVision(path);
- File.WriteAllText(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, SelectorConst.RevitFileVisionFile), revitVision);
- #endregion
- #region 删除生成的Revit dll
-
- var loadingRevitPath = Path.Combine(runPath, SelectorConst.LoadingRevit);
-
- #region Del RevitDll
- foreach (string loadingItem in File.ReadAllLines(loadingRevitPath))
- {
- string destFile = Path.Combine(runPath, $"{loadingItem}.dll");
- if(File.Exists(destFile))
- File.Delete(destFile);
- }
- #endregion
-
- #endregion
-
- #region 启动
- File.AppendAllText(@"D:\log.txt",param);
- Process process = new Process();
- process.StartInfo.FileName = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "ExportStart.exe");
- process.StartInfo.UseShellExecute = false;
- process.StartInfo.CreateNoWindow = true;
- process.StartInfo.RedirectStandardInput = true;
- process.StartInfo.RedirectStandardOutput = true;
- process.StartInfo.RedirectStandardError = true;
- process.StartInfo.Arguments = command + " "+
- "\"" + param + "\"" + " "+
- "\"" + path + "\"";
- process.Start();
- string msg = process.StandardOutput.ReadToEnd();
- Console.WriteLine(msg);
- process.WaitForExit();
- process.Close();
- #endregion
- Console.WriteLine("end");
-
- }
- }
- }
|