Process.Start
とを使用してCD(または他のメディア)の自動実行をエミュレートする最も近い方法は何ProcessStartInfo
ですか?
私は次のような明白なことを試みました:
// Just opens the folder
Process.Start("F:");
// Ditto
Process.Start(new ProcessStartInfo("F:") {UseShellExecute = true});
// Throws System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
Process.Start(new ProcessStartInfo("F:") {UseShellExecute = true, Verb = "autorun"});
明らかにファイルを解析しautorun.inf
て、関連する実行可能ファイルを作成することはできますが、もっと簡単な方法があるかどうか疑問に思っています。