返回當(dāng)前文件下的工作目錄路徑:
os.path.abspath('test.txt')
返回當(dāng)前工作目錄:
os.getcwd()
os.path.abspath('.')
os.path.abspath(os.curdir)
os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
返回上級工作目錄:
os.path.abspath('..')
os.walk() 用于在目錄樹中游走輸出目錄中的文件名
for root, dirs, filesin os.walk(os.getcwd()):
print(root) #os.walk()所在目錄
print(dirs) #os.walk()所在目錄的所有目錄名
print(files) #os.walk()所在目錄的所有非目錄文件名