Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
小さなプログラムのヘルプが必要です。CMD を開始して、次のようなコマンドを実行したいだけです。dir
dir
だから私は次のことをしました:
Process.Start("cmd", "dir");
問題は、それdirが cmd で実行されないことです。
これどうやってするの?
試す
Process.Start("cmd", "/c dir");
また
Process.Start("cmd", "/k dir");
コマンドウィンドウを開いたままにします。