#### 前言
在python3.4开始的版本中,提供了pathlib模块,采用面向对象的方法去判断是否存在目录/文件,很方便及高效的使用
#### 示例
```
from pathlib import path
filePath = path("/data/mydir")
if filePath.is_dir(): # if filePath.is_file():
print("存在")
```
#### 结语
[python3-cookbook 测试文件是否存在](5.12 测试文件是否存在 — python3-cookbook 3.0.0 文档)
[runoob Python 判断文件/目录是否存在](Python 判断文件/目录是否存在 | 菜鸟教程 (runoob.com))