1.检查文件是否存在
我们经常需要从文件中读取数据或向其中写入数据,但要做到这一点,我们需要检查文件是否存在。
import os
exists = os.path.isfile(\'/path/to/file\')
来源:https://www.cnblogs.com/xuliuzai/p/15390819.html
图文来源于网络,如有侵权请联系删除。
我们经常需要从文件中读取数据或向其中写入数据,但要做到这一点,我们需要检查文件是否存在。
import os
exists = os.path.isfile(\'/path/to/file\')
来源:https://www.cnblogs.com/xuliuzai/p/15390819.html
图文来源于网络,如有侵权请联系删除。