在Python中进行文件测试?
这个问题在这里已经有了答案:
使用os.path.exists
或os.path.isfile
:
>>> import os
>>> os.path.isfile('/path/to/file')
False
看看os.path.exists。
链接地址: http://www.djcxy.com/p/7303.html这个问题在这里已经有了答案:
使用os.path.exists
或os.path.isfile
:
>>> import os
>>> os.path.isfile('/path/to/file')
False
看看os.path.exists。
链接地址: http://www.djcxy.com/p/7303.html