を使用gammu
して、アドレスとメッセージを含むテキスト メッセージを送信したいのですが、gammu
パラメーターに問題があります。プログラムのみを起動すると、実行されます(string cmd1 = "c:\\G133\\bin\\gammu.exe ";
)。パラメータを追加すると、次のエラーが発生します。
System.ComponentModel.Win32Exception' が System.dll で発生しました
追加情報: 指定されたファイルが見つかりません:
コード:
string[] sms = File.ReadAllLines(@"C:\\temp\\test.txt");
string address = sms[0];
string message = sms[1];
string cmd1 = @"C:\G133\bin\gammu.exe --sendsms TEXT" + " " +
"\"" + address + "\" -text " + " " + "\"" + message + "\"";
System.Diagnostics.Process.Start(cmd1);
誰でも私を助けることができますか?前もって感謝します。
出力はよく見えます:
Console.WriteLine(cmd1); - result
C:\G133\bin\gammu.exe --sendsms TEXT +12121234567 -text "Hello"