通过Python遍历目录下的所有文件和目录。
环境:
Python3.6
Windows7
包:
os
核心代码:
for root, dirs, files in os.walk(path):
for d in dirs :
dpath = os.path.join(root, d)
for file in files :
fpath = os.path.join(root, file)
原创内容,抄袭必究
---20190808
---David.Ocean
通过Python遍历目录下的所有文件和目录。
环境:
Python3.6
Windows7
包:
os
核心代码:
for root, dirs, files in os.walk(path):
for d in dirs :
dpath = os.path.join(root, d)
for file in files :
fpath = os.path.join(root, file)
原创内容,抄袭必究
---20190808
---David.Ocean