判断是否
>>> 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
>>> 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