我特林運行從C#運行Python腳本
,並從外殼被打開,但該腳本不運行
我知道它,因爲它應該創建一個文件python腳本
我該如何運行該過程?
Process p = new Process(); // create process (i.e., the python program
p.StartInfo.FileName = @"C:\Python27\python.exe";
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false; // make sure we can read the output from stdout
p.StartInfo.Arguments = @"T:\barakr\360_3G_daily_report\2016.03.15\0615319253\powerlink_logs_mrg.py"; //PanelsDirectory[j] + "\\powerlink_logs_mrg.py"; // start the python program with two parameters
p.Start();
如果在字符串之前使用'@',似乎並不需要加雙'/',對不起。 – Onemikoscar