File tests in Python?
This question already has an answer here:
使用os.path.exists
或os.path.isfile
:
>>> import os
>>> os.path.isfile('/path/to/file')
False
看看os.path.exists。
链接地址: http://www.djcxy.com/p/7304.html上一篇: 如何检查命令行参数是否是文件或不是在Python?
下一篇: 在Python中进行文件测试?