一、Python中os模块的常见的使用方法
os.listdir(path):遍历path的文件或者文件夹,返回一个列表
os.path.join(path1,path2,……,pathn):拼接路径
os.path.isdir(path):判断此路径对应的是否是文件夹
os.path.isfile(path):判断是否是文件
os.path.dirname(path):返回路径的文件夹名
os.path.filename(path):返回路径的文件名
os.getcwd():获取当前路径
二、