一、獲取完整包含執行程序的路徑:exe文件所在的目錄+.exe文件名 1、方法1:Type.Assembly.Location 結果:X:\xxx\xxx\xxx.exe(.exe文件所在的目錄+.exe文件名) 2、方法 ...
可以把下文貼到代碼中,輸出當前路徑,有些是在winform上有效,有些是在web上有效,請自己斟酌 ...
2017-10-20 16:41 0 6409 推薦指數:
一、獲取完整包含執行程序的路徑:exe文件所在的目錄+.exe文件名 1、方法1:Type.Assembly.Location 結果:X:\xxx\xxx\xxx.exe(.exe文件所在的目錄+.exe文件名) 2、方法 ...
...
string path=Path.Combine(AppDomain.CurrentDomain.BaseDirectory); //string path = "E:/ ...
1. 2. 3. 4.當前工作目錄,也就是cmd中>前面的的位置 5. 6. 7. 在系統服務中最好用這個方式去取路徑 ...
//獲取當前程序集的完整路徑加上EXE的名稱 string binPath = Assembly.GetExecutingAssembly().Location; Console.WriteLine(binPath); //獲取當前程序集的完整路徑 binPath ...
//獲取當前進程的完整路徑,包含文件名(進程名)。string str = this.GetType().Assembly.Location;result: X:\xxx\xxx\xxx.exe (.exe文件所在的目錄+.exe文件名)//獲取新的 Process 組件並將 ...
1.//獲取模塊的完整路徑。 string path1 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; 2.//獲取和設置當前目錄(該進 ...