C#获取路径: 窗体程序与控制台程序
窗体程序
Application.ExecutablePath;//D:\\Program Files (x86)\\Test\\Test.exe
Application.StartupPath;//D:\\Program Files (x86)\\Test
控制台程序
AppDomain.CurrentDomain.BaseDirectory;//E:\\CSharp\\selfStart\\bin\\Debug\\
AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//E:\\CSharp\\selfStart\\bin\\Debug\\
注意:文件命名不可以出现#等特殊符号,#符号会吧后面的地址变成**//**// Test.exe
学习实践个人笔记!小白一个,谢谢阅读!