//ファイル名を含むフルパスと、フォルダのパス
MessageBox.Show(Application.ExecutablePath + "\n" + Application.StartupPath);
C#自身のパス
C#
C# //ファイル名を含むフルパスと、フォルダのパス
MessageBox.Show(Application.ExecutablePath + "\n" + Application.StartupPath);
Comments