1.os.walk(path) 遍历文件所有的目录
for root, dirs, files in os.walk(path, topdown=False)
os.listdir遍历当前的目录
for flie in os.listdir(path)