Python彻底删除文件夹及其子文件方式
作者:路至晴空 时间:2022-07-27 04:18:53
我就废话不多说了,直接上代码吧!
#coding:utf-8
import os
import stat
import shutil
#filePath:文件夹路径
def delete_file(filePath):
if os.path.exists(filePath):
for fileList in os.walk(filePath):
for name in fileList[2]:
os.chmod(os.path.join(fileList[0],name), stat.S_IWRITE)
os.remove(os.path.join(fileList[0],name))
shutil.rmtree(filePath)
return "delete ok"
else:
return "no filepath"
print os.path.exists("E:\\biancheng\\python\\ascas")
print delete_file("E:\\biancheng\\python\\ascas")
来源:https://blog.csdn.net/yanlintao1/article/details/80102286
标签:Python,删除,文件夹,子文件
0
投稿
猜你喜欢
js点击事件的执行过程实例分析【冒泡与捕获】
2024-02-27 07:53:34
Mysql中索引和约束的示例语句
2024-01-15 18:56:30
在Python 3中实现类型检查器的简单方法
2022-08-13 13:30:30
Python中的random函数实例详解
2021-01-09 13:01:49
java连接Oracle数据库的方法解析
2024-01-21 22:12:27
记录Python脚本的运行日志的方法
2022-09-25 08:11:12
原生js拖拽实现图形伸缩效果
2024-04-16 08:55:27
vue项目使用高德地图的定位及关键字搜索功能的实例代码(踩坑经验)
2024-05-09 15:21:01
python中将\\\\uxxxx转换为Unicode字符串的方法
2023-11-04 15:20:07
原生python实现knn分类算法
2023-04-18 14:07:52
asp.net mvc 从数据库中读取图片的实现代码
2024-01-19 14:51:09
微软建议的ASP性能优化28条守则(4)
2008-02-26 17:57:00
golang通过mysql语句实现分页查询
2024-01-23 13:30:03
mysql 一个较特殊的问题:You can't specify target table 'wms_cabinet_form'
2024-01-24 19:07:13
ElementUI嵌套页面及关联增删查改实现示例
2023-07-02 16:54:45
Scrapy+Selenium自动获取cookie爬取网易云音乐个人喜爱歌单
2023-06-26 10:15:54
python实现时间序列自相关图(acf)、偏自相关图(pacf)教程
2023-03-01 06:37:02
浅谈Python中range与Numpy中arange的比较
2021-05-21 00:15:48
Golang 锁原理的简单实现
2024-04-28 09:18:03
python安装cx_Oracle和wxPython的方法
2022-07-31 11:33:04