我想從c#應用程序調用一個從它開始的應用程序的命令行並從中檢索統計信息。從.NET應用程序調用命令行
我這樣做,但缺少的東西:
ProcessStartInfo psf = new ProcessStartInfo("cmd.exe", "/C time");
psf.WindowStyle = ProcessWindowStyle.Hidden;
psf.RedirectStandardOutput = true;
psf.UseShellExecute = false;
psf.CreateNoWindow = true;
Process p = Process.Start(psf);
StreamReader sr = p.StandardOutput;
p.WaitForExit();
有什麼不對?
'CMD/C Time'希望用戶輸入。除非您提供一些輸入,否則它不會關閉。在你的情況下,你隱藏了命令窗口。這使得它看起來像一個輸入在隱藏窗口中掛起。 你想要代碼做什麼? – shahkalpesh 2010-02-21 08:56:09
我不想改變從這個應用程序獲得它的時間 – 2010-02-21 08:57:01
你不能使用'DateTime.Now'嗎? – shahkalpesh 2010-02-21 08:58:10