python文件操作os.getcwd() # 返回当前工作目录
os.walk(path) # 递归现实path路径下的所有文件和文件夹
os.path.split(path) # 把路径分割成dirname和basename
os.ma
2021-06-29