可以使用os模块中的path模块来判断文件是否存在。
示例代码:文章源自爱尚资源教程网-https://www.23jcw.net/6400.html
import os file_path = 'test.txt' if os.path.exists(file_path): print('文件存在') else: print('文件不存在')
其中,os.path.exists()函数用于判断文件或目录是否存在。如果存在,返回True,否则返回False。文章源自爱尚资源教程网-https://www.23jcw.net/6400.html 文章源自爱尚资源教程网-https://www.23jcw.net/6400.html
相关文章
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!