码迷,mamicode.com
首页 > 编程语言 > 详细

python 学习笔记 os模块常用项

时间:2015-05-08 20:27:16      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:python os 模块

删除指定目录树中的空目录

#!/usr/bin env python

import os
import sys

dir =sys.argv[1]
if os.path.isdir(dir):
   for root,dirs,files in os.walk(dir,topdown=False):#从最里向外遍历
      for d in dirs:
         if not os.listdir(os.path.join(root,d)):#判断目录是否为空
            os.rmdir(os.path.join(root,d))
else:
   print ‘%s is not dir‘ %dir

os.walk()函数的用法

   for root,dirs,files in os.walk(path,topdown=True,onerro=None)

   返回一个三元元组,root为每次遍历的路径,dirs 返回一个目录列表,files 返回一个文件列表

   topdown 默认(True)从外往里,False 为从里往外

os 模块常用项

os.listdir(path)

os.getcwd()

os.chdir(path)

os.rmdir(path)

os.remove()

os.path.split(path)

os.path.join(path,filename)

os.path.isdir()

os.path.isfile()

os.path.exists()

os.path.getsize()

os.path.basename()

os.path.dirname()

os.sep


python 学习笔记 os模块常用项

标签:python os 模块

原文地址:http://2369004.blog.51cto.com/2359004/1649701

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!