首页 > 代码库 > C# 获取应用程序的路径

C# 获取应用程序的路径

  • 获取Console程序的路径和所在目录

string path = System.Reflection.Assembly.GetExecutingAssembly().Location;

string dir = System.IO.Path.GetDirectoryName(path);



C# 获取应用程序的路径