脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 在python下使用tensorflow判断是否存在文件夹的实例

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

2021-07-03 00:13ChaoFeiLi Python

今天小编就为大家分享一篇在python下使用tensorflow判断是否存在文件夹的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

判读是否存在文件夹

?
1
2
3
4
5
6
import tensorflow as tf
import os
folder = './floder'
if not tf.gfile.exists(folder):
 #若文件夹不存在,则自动创建文件夹
  tf.gfile.makedirs(folder)

若存在删除文件夹下所有文件

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

原文链接:https://blog.csdn.net/ChaoFeiLi/article/details/86584958

延伸 · 阅读

精彩推荐