参考链接:http://www.pfinn.net/python-check-if-file-exists.html
可以判断一个文件或目录(文件夹)是否存在
import os.path
os.path.exists(path);
import os.path
os.path.isfile(path);
import os.path
os.path.isdir(path);
import os.path os.path.isdir(path); # 返回 True 表示是目录(文件夹)
import os.path os.path.isfile(path); # 返回 True 表示是文件