标签:重命名 lin rename line exist als 路径 link 使用
os模块提供简便使用系统功能的方法。
os.getcwd() 获取工作目录
os.chdir(path) 更改工作目录
os.curdir 当前目录
os.makedirs(name, mode=0o777, exist_ok=False) 创建多级目录
os.mkdir(path, mode=0o777, , dir_fd=None) 创建目录
os.removedirs(name) 递归删除目录
os.rmdir(path, , dir_fd=None) 删除目录
os.listdir(path=‘.‘) 列出路径中的条目
os.remove(path, , dir_fd=None) 删除指定路径的文件
os.rename(old, new) 重命名当前工作目录下的文件
os.stat(path, , dir_fd=None, follow_symlinks=True) 获取文件属性
os.sep 获取系统的路径分隔符
os.linesep 获取行分隔符
os.pathsep 获取环境变量分隔符
os.environ 返回环境变量字典
os.path.abspath(path) 返回绝对路径
os.path.dirname(path) 只返回路径
os.path.basename(path) 只返回文件名
os.path.join(path, *paths) 拼接路径
os.path.split(path) 将路径分割为dir和base元组
标签:重命名 lin rename line exist als 路径 link 使用
原文地址:https://www.cnblogs.com/ikct2017/p/9784345.html