1. system.diagnostics.process.getcurrentprocess().mainmodule.filename
獲取模組的完整路徑。
2. system.environment.currentdirectory
獲取和設定當前目錄(該程序從中啟動的目錄)的完全限定目錄。
3. system.io.directory.getcurrentdirectory()
獲取應用程式的當前工作目錄。這個不一定是程式從中啟動的目錄啊,有可能程式放在c:"www裡,這個函式有可能返回c:"documents and settings"zyb",或者c:"program files"adobe",有時不一定返回什麼東東,我也搞不懂了。
獲取程式的基目錄。
獲取和設定包括該應用程式的目錄的名稱。
獲取啟動了應用程式的可執行檔案的路徑。效果和2、5一樣。只是5返回的字串後面多了乙個"""而已
獲取啟動了應用程式的可執行檔案的路徑及檔名,效果和1一樣。
Python中獲得當前目錄和上級目錄
獲取當前檔案的路徑 from os import path d path.dirname file 返回當前檔案所在的目錄 file 為當前檔案,若果在ide中執行此行會報錯,可改為 d path.dirname 獲得某個路徑的父級目錄 parent path os.path.dirname d 獲...
Python中獲得當前目錄和上級目錄
獲取當前檔案的路徑 from os import path d path.dirname file 返回當前檔案所在的目錄 file 為當前檔案,若果在ide中執行此行會報錯,可改為 d path.dirname 獲得某個路徑的父級目錄 parent path os.path.dirname d 獲...
C 獲得當前路徑(目錄)的方法
c 獲得當前路徑 目錄 的方法 assembly myassembly assembly.getentryassembly string path myassembly.location directoryinfo dr new directoryinfo path path dr.parent 當...