在 Python 中尋找目前目錄和檔案目錄
從 shell 執行 Python 腳本時,了解目前目錄和檔案目錄通常很有用。執行的 Python 檔案的位置。
目前目錄:
要取得目前目錄的路徑,請使用os.getcwd() 函數:
import os current_directory = os.getcwd()
檔案:
檔>檔目錄:import os file_directory = os.path.dirname(os.path.realpath(__file__))
要確定包含正在運行的Python檔案的目錄,請使用下列指令code:
請注意,__file__ 是一個常數,包含目前腳本的絕對路徑。 os.path.realpath() 函數用於解析路徑中的任何符號連結。
以上是如何在Python中尋找目前目錄和檔案目錄?的詳細內容。更多資訊請關注PHP中文網其他相關文章!