Python彻底删除文件夹及其子文件方式
我就废话不多说了,直接上代码吧!
#coding:utf-8 importos importstat importshutil
#filePath:文件夹路径 defdelete_file(filePath): ifos.path.exists(filePath): forfileListinos.walk(filePath): fornameinfileList[2]: os.chmod(os.path.join(fileList[0],name),stat.S_IWRITE) os.remove(os.path.join(fileList[0],name)) shutil.rmtree(filePath) return"deleteok" else: return"nofilepath" printos.path.exists("E:\\biancheng\\python\\ascas") printdelete_file("E:\\biancheng\\python\\ascas")
以上这篇Python彻底删除文件夹及其子文件方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。