我是C#代码的新手,我需要使用C#代码运行以下命令,任何人都可以给我这个代码的完整代码吗?
C:\\Srinivasa\\VisualStudioProject\\CutyCapt_Pdf_Code\\release\\CutyCapt.exe
--url=file:///C:/Users/UPPALASX/Desktop/New%20folder/ResearchMap.html
--out=Out_Embeded_RM.png
--min-width=800
--min-height=10000
答案 0 :(得分:3)
试试这个:
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "C:\\Srinivasa\\VisualStudioProject\\CutyCapt_Pdf_Code\\
release\\CutyCapt.exe";
startInfo.Arguments = "--url=\'C:/Users/UPPALASX/Desktop/New
folder/ResearchMap.html\' --out=Out_Embeded_RM.png --min-width=800
--min-height=10000";
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
答案 1 :(得分:2)