c#獲取程式當前路徑的方法
//獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名(程序名)。
string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;
result: x:/***/***/***.exe (.exe檔案所在的目錄+.exe檔名)
//獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑。
string str = system.environment.currentdirectory;
result: x:/***/*** (.exe檔案所在的目錄)
//獲取應用程式的當前工作目錄(不可靠)。
string str = system.io.directory.getcurrentdirectory();
result: x:/***/*** (.exe檔案所在的目錄)
C 獲取程式當前路徑的方法
獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str system.diagnostics.process.getcurrentprocess mainmodule.filename result x exe exe檔案所在的目錄 exe...
C 獲取程式當前路徑的方法
經常要獲得當前應用程式的路徑,原來一直用mfc寫程式,轉到c 有點不習慣,特將c 中獲取程式當前路徑的方法總結如下 1 獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str system.diagnostics.process.getcu...
C 獲取程式當前路徑的方法
獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名 程序名 string str system.diagnostics.process.getcurrentprocess mainmodule.filename result x exe exe檔案所在的目錄 exe...