1. 使用os模塊獲取文件的完整路徑中的os模塊提供了一系列操作文件和目錄的函數。其中,os.path.abspath()函數可以獲取文件的路徑(即完整路徑)。
port os
file_path = 'test.txt'
abs_path = os.path.abspath(file_path)
t(abs_path)
inistrator\Desktop\test.txt
2. 使用os.path.realpath()函數獲取文件的完整路徑
port os
file_path = 'test.txt'
real_path = os.path.realpath(file_path)
t(real_path)
inistrator\Desktop\test.txt
ame()函數獲取文件所在目錄的完整路徑ame()函數。
port os
file_path = 'test.txt'ame(os.path.abspath(file_path))
t(dir_path)
inistrator\Desktop
ame編程中非常基礎的操作,對于文件路徑的處理非常有用。