C#で メモ帳を起動する

//メモ帳を起動する
System.Diagnostics.Process p = System.Diagnostics.Process.Start(“notepad.exe”);

//コマンドライン引数に「”C:\test\1.txt”」を指定してメモ帳を起動する
System.Diagnostics.Process.Start(“notepad.exe”, @”””C:\test\1.txt”””);

//Excelファイルを起動する
System.Diagnostics.Process.Start(“excel.exe”, “C:\test\test.xls”);

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です