Posted in Python onJune 10, 2019
判读是否存在文件夹
import tensorflow as tf import os folder = './floder' if not tf.gfile.Exists(folder): #若文件夹不存在,则自动创建文件夹 tf.gfile.MakeDirs(folder)
若存在删除文件夹下所有文件
if tf.gfile.Exists(folder): #返回一个list for file in (tf.gfile.ListDirectory(folder)): #添加绝对路径,并删除文件 tf.gfile.Remove(os.path.join(os.path.abspath(folder),file))
以上这篇在python下使用tensorflow判断是否存在文件夹的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
在python下使用tensorflow判断是否存在文件夹的实例
- Author -
ChaoFeiLi声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@