色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

Python如何獲取文件的完整路徑

方一強2年前17瀏覽0評論

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編程中非常基礎的操作,對于文件路徑的處理非常有用。