Python 官方文档:入门教程 => 点击学习
本篇文章给大家分享的是有关os.path.exists()函数怎么在python中使用,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。os即operating system(操作
本篇文章给大家分享的是有关os.path.exists()函数怎么在python中使用,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
os即operating system(操作系统),Python 的 os 模块封装了常见的文件和目录操作。
os.path模块主要用于文件的属性获取,exists是“存在”的意思,所以顾名思义,os.path.exists()就是判断括号里的文件是否存在的意思,括号内的可以是文件路径。
user.py为存在于当前目录的一个文件
import ospath = os.path.exists('user.py')print(path)
True Process finished with exit code 0
如果不存在,返回的则是FALSE。
补充:
判断文件或文件夹是否存在,创建文件夹
import osimport numpy as np data = np.array([1, 2, 3])if not os.path.exists("./data/"): print("# path not exists") os.makedirs("./data/") if not os.path.exists("./data/data.npy"): print("# data.npy not exists") np.save("./data/data.npy", data) print("# path exists? :", os.path.exists("./data/"))print("# data.npy exists? :", os.path.exists("./data/data.npy"))
# path not exists# data.npy not exists# path exists? : True# data.npy exists? : True
以上就是os.path.exists()函数怎么在python中使用,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网Python频道。
--结束END--
本文标题: os.path.exists()函数怎么在python中使用
本文链接: https://www.lsjlt.com/news/268022.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0