码迷,mamicode.com
首页 > 编程语言 > 详细

python判断文件是否存在

时间:2019-08-22 19:00:42      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:%s   message   pytho   not   htm   file   art   http   https   

 

import os
 
filename = r‘/home/tim/workspace/test.txt‘
if os.path.exists(filename):
    message = ‘OK, the "%s" file exists.‘
else:
    message = "Sorry, I cannot find the "%s" file."
print message % filename

 

 

参考:

https://www.jb51.net/article/66452.htm

python判断文件是否存在

标签:%s   message   pytho   not   htm   file   art   http   https   

原文地址:https://www.cnblogs.com/sea-stream/p/11396081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!