操作 | os and os.path | pathlib |
---|---|---|
绝对路径 | os.path.abspath |
Path.resolve |
修改权限 | os.chmod |
Path.chmod |
创建目录 | os.mkdir |
Path.mkdir |
重命名 | os.rename |
Path.rename |
移动 | os.replace |
Path.replace |
删除目录 | os.rmdir |
Path.rmdir |
删除文件 | os.remove , os.unlink |
Path.unlink |
工作目录 | os.getcwd |
Path.cwd |
是否存在 | os.path.exists |
Path.exists |
用户目录 | os.path.expanduser |
Path.expanduser and Path.home |
常用的 pathlib 和 os 对比图
最新推荐文章于 2025-03-29 15:22:37 发布