浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

python delete only files in dir_Linux DB2 Java Python PHP Code Snippets_百度空间

 
查看文章
  
python delete only files in dir
2010-06-04 9:53

try:
 for the_file in os.listdir(tmp_dir):
  file_path = os.path.join(tmp_dir, the_file)
  if os.path.isfile(file_path):
   os.unlink(file_path)
 os.rmdir(tmp_dir)#remove empty directory
except Exception, e:
 pass
 print "can not delete %s with directory inside: %s"%(tmp_dir,e)

posted on 2012-02-27 10:40  lexus  阅读(200)  评论(0编辑  收藏  举报