BLOG
Enjoy when you can, and endure when you must.
NOV 30, 2012/Python
一种递归删除空文件夹的方法
def delete_empty_directories(working_dir):     for item in os.listdir(working_dir):         current_path = os.path.join(working_dir, item)         if os.p...
1