欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在python下使用tensorflow判断是否存在文件夹的实例

程序员文章站 2023-11-12 21:55:40
判读是否存在文件夹 import tensorflow as tf import os folder = './floder' if not tf.gfil...

判读是否存在文件夹

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判断是否存在文件夹的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。