獲取Windows服務下當前路徑的方法spa
獲取當前運行程序路徑 包含exe
Assembly.GetExecutingAssembly().Location;
D:\xxxxxx\bin\Debug\xx.exe
獲取當前運行程序路徑 包含exe
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
D:\xxxxxx\bin\Debug\xx.exe
獲取該進程從中啓動的目錄
System.Environment.CurrentDirectory;
C:\WINDOWS\system32\Logs
獲取應用程序的當前工做目錄
System.IO.Directory.GetCurrentDirectory();
C:\WINDOWS\system32
獲取程序的基目錄
System.AppDomain.CurrentDomain.BaseDirectory;
D:\xxxxxx\bin\Debug
獲取啓動了應用程序的可執行文件的路徑
System.Windows.Forms.Application.StartupPath;
D:\xxxxxx\bin\Debug