python 操作文件

(1) 判断文件是否存在
import os 
os.path.isfile('test.txt') #如果不存在就返回False 
os.path.exists(directory) #如果目录不存在就返回False
>>> import os
>>> print os.path.isfile("D:\\dstUrl.txta")
False
>>> 


你可能感兴趣的:(python 操作文件)