python判斷檔案是否存在等操作

天飛.h發表於2016-01-28

判斷是否
>>> import os
>>> os.path.isfile(`/opt/dir`)
False
>>> os.path.isfile(`/opt/file`)
True
>>> os.path.exists(`/opt/file`)
True
>>> os.path.exists(`/opt/dir`)
True
>>> os.makedirs(`/opt/dir1`)
>>> os.path.exists(`/opt/dir1`)
True

相關文章