递归删除指定路径下的空目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归删除指定路径下的空目录相关的知识,希望对你有一定的参考价值。

递归删除指定路径下的空目录:

注:
如第一级目录要保留

vi a1.py

#!/usr/bin/python

import os

dir="/root/python"

os.chdir(dir)

for f in os.listdir(dir):
if os.path.isdir(f):
p = open(‘/root/python/logs/py.log‘,‘a‘)
p.write(os.path.join(dir,f)+" ")
p.close()

g = open(‘/root/python/logs/py.log‘,‘r‘)
for i in g.readlines():
g.close()
f = i.strip()
os.chdir(f)
for root,dirs,files in os.walk(‘.‘):
for j in dirs:
if not os.listdir(os.path.join(root,j)):
print(os.path.join(root,j))
os.removedirs(os.path.join(root,j))

:wq

python a1.py

以上是关于递归删除指定路径下的空目录的主要内容,如果未能解决你的问题,请参考以下文章

Linux Shell之递归读取指定目录下的所有文件

46练习:输出指定目录下的所有文件名称

请问,如何用bat 删除指定目录下的大小超过100M的文件?比如删除D:\Templates下的超过100M的文件?

python之删除指定目录指定日期下的日志文件

Java读取指定目录下的所有文件(子目录里的文件也可递归得到)

QDir 类 -属性详解