官方文档
os和pathlib对比
- 判断当前目录下的目录
python
>>> p = Path('.')
>>> [x for x in p.iterdir() if x.is_dir()]
[WindowsPath('data')]
python
>>>[i for i in glob.glob("*") if os.path.isdir(i)]
['data']
- 返回当前目录下的所有文件(包括子文件)
python
>>>list(p.glob("**/*"))
python
>>>list(glob.glob("**/*", recursive=True))
python
使用os包需要递归,比较复杂
- 路径拼接
python
>>>p = p/'__init__.py'
WindowsPath('__init__.py')
python
>>>os.path.join('.', '__init__.py')
.\__init__.py
- 打开文件
python
with p.open() as f:
f.read()
以上都是比较常用的操作,更多操作请看官方文档,作对比后个人感觉确实比os操作简便很多