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.
コンソールで %appdata% の .exe ファイルを開くためにこのコードを書きました:
try { System.Diagnostics.Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData )); } catch { }
.exeappdata ディレクトリを開きますが、ファイルを開きたいです。私は何をすべきか?
.exe
プログラムを呼び出す前に、exe 名とフォルダー名を組み合わせる必要があります。
System.Diagnostics.Process.Start( System.IO.Path.Combine( Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData ), "Exename.exe")