python遍历目录和文件

1.python遍历指定文件夹内目录和 文件

2.其中path指定自己想要的目录

3.路径前加r是为了转义\\

#!/usr/bin/python3
import os
path = r"F:\\"
for root,dirs,files in os.walk(path,topdown=False):
    for name in files:
        print(os.path.join(root,name))
    for name in dirs:
        print(os.path.join(root,name))

你可能感兴趣的:(Python)