你可以使用os.path
模塊來獲取指定文件的路徑。以下是一個示例代碼:
import os
# 獲取當前文件的路徑
current_path = os.path.abspath(__file__)
print("當前文件的路徑:", current_path)
# 獲取當前文件所在的目錄
current_dir = os.path.dirname(current_path)
print("當前文件所在的目錄:", current_dir)
# 獲取指定文件的路徑
file_path = os.path.join(current_dir, "filename.txt")
print("指定文件的路徑:", file_path)
在這個示例中,os.path.abspath(__file__)
用于獲取當前文件的絕對路徑,os.path.dirname(current_path)
用于獲取當前文件所在的目錄,而os.path.join(current_dir, "filename.txt")
用于將當前目錄和指定的文件名拼接成完整的路徑。