1 Star 0 Fork 1

如果未来有可能/ 人脸识别 Face recognition

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deleteTest.py 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
Submitk 提交于 2021-04-21 22:57 . commit
import shutil
import os
def deletedir(num): #num学号
pathdir = './data/'+ str(num)
if os.path.exists(pathdir): # 如果文件目录存在
# 删除文件夹。
shutil.rmtree(pathdir)
print('已删除')
else:
print('no such filedir') # 则返回文件目录不存在
pathfile = './trainner/'+ str(num) + '.xml'
if os.path.exists(pathfile): # 如果文件存在
os.remove(pathfile)
print('已删除')
else:
print('no such file') # 则返回文件不存在
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/li12247060li/face-recognition.git
git@gitee.com:li12247060li/face-recognition.git
li12247060li
face-recognition
人脸识别 Face recognition
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385