在Python中移动目录结构的方法


Posted in Python onJanuary 31, 2016

来源:http://stackoverflow.com/questions/3806562/ways-to-move-up-and-down-the-dir-structure-in-python

#Moving up/down dir structure
print os.listdir('.') # current level
print os.listdir('..') # one level up
print os.listdir('../..') # two levels up
 
# more complex example:
# This will walk the file system beginning in the directory the script is run from. It 
# deletes the empty directories at each level
 
for root, dirs, files in os.walk(os.getcwd()):
  for name in dirs:
    try:
      os.rmdir(os.path.join(root, name))
    except WindowsError:
      print 'Skipping', os.path.join(root, name)

This will walk the file system beginning in the directory the script is run from. It deletes the empty directories at each level.

Python 相关文章推荐
wxPython中文教程入门实例
Jun 09 Python
用python + hadoop streaming 分布式编程(一) -- 原理介绍,样例程序与本地调试
Jul 14 Python
Python3使用requests包抓取并保存网页源码的方法
Mar 15 Python
Python结巴中文分词工具使用过程中遇到的问题及解决方法
Apr 15 Python
python实现二叉树的遍历
Dec 11 Python
python使用json序列化datetime类型实例解析
Feb 11 Python
学生信息管理系统python版
Oct 17 Python
python之当你发现QTimer不能用时的解决方法
Jun 21 Python
python实现倒计时小工具
Jul 29 Python
Python实现桌面翻译工具【新手必学】
Feb 12 Python
Python 输出详细的异常信息(traceback)方式
Apr 08 Python
pycharm 实现调试窗口恢复
Feb 05 Python
python嵌套函数使用外部函数变量的方法(Python2和Python3)
Jan 31 #Python
python 爬取微信文章
Jan 30 #Python
python生成验证码图片代码分享
Jan 28 #Python
详解Python网络爬虫功能的基本写法
Jan 28 #Python
Python3实现Web网页图片下载
Jan 28 #Python
Python正则获取、过滤或者替换HTML标签的方法
Jan 28 #Python
Python每天必学之bytes字节
Jan 28 #Python
You might like
PHP获取网卡地址的代码
2008/04/09 PHP
Look And Say 序列php实现代码
2011/05/22 PHP
php中比较简单的导入phpmyadmin生成的sql文件的方法
2011/06/28 PHP
深入解析fsockopen与pfsockopen的区别
2013/07/05 PHP
PHP编写daemon process 实例详解
2016/11/13 PHP
Javascript中的Split使用方法与技巧
2007/03/09 Javascript
jquery的Tooltip插件 qtip使用详细说明
2010/09/08 Javascript
分享27款非常棒的jQuery 表单插件
2011/03/28 Javascript
深入理解javascript动态插入技术
2013/11/12 Javascript
jquery图片滚动放大代码分享(2)
2015/08/28 Javascript
JS+DIV+CSS排版布局实现美观的选项卡效果
2015/10/10 Javascript
ionic2屏幕适配实现适配手机、平板等设备的示例代码
2017/08/11 Javascript
Vue自定义事件(详解)
2017/08/19 Javascript
使用vue的transition完成滑动过渡的示例代码
2018/06/25 Javascript
微信小程序map组件结合高德地图API实现wx.chooseLocation功能示例
2019/01/23 Javascript
微信小程序实现获取小程序码和二维码java接口开发
2019/03/29 Javascript
Angular 多级路由实现登录页面跳转(小白教程)
2019/11/19 Javascript
VsCode里的Vue模板的实现
2020/08/12 Javascript
[40:29]2018DOTA2亚洲邀请赛 4.7总决赛 LGD vs Mineski 第一场
2018/04/10 DOTA
python编写网页爬虫脚本并实现APScheduler调度
2014/07/28 Python
在Python的Flask中使用WTForms表单框架的基础教程
2016/06/07 Python
Python基础教程之浅拷贝和深拷贝实例详解
2017/07/15 Python
修改python plot折线图的坐标轴刻度方法
2018/12/13 Python
python 使用pandas计算累积求和的方法
2019/02/08 Python
Python使用Pandas库常见操作详解
2020/01/16 Python
Django mysqlclient安装和使用详解
2020/09/17 Python
浅谈amaze-ui中datepicker和datetimepicker注意的几点
2020/08/21 HTML / CSS
windeln官方海外旗舰店:德淘超人气母婴超市
2017/12/15 全球购物
阿根廷票务网站:StubHub阿根廷
2018/04/13 全球购物
艺龙旅行网酒店预订:国内、港澳台酒店
2018/06/26 全球购物
极度干燥澳大利亚官方网站:Superdry澳大利亚
2019/03/28 全球购物
桥梁与隧道工程专业本科生求职信
2013/10/08 职场文书
总经理职责
2013/12/22 职场文书
2015年精神文明建设工作总结
2015/04/21 职场文书
党员干部公开承诺书范文
2015/04/27 职场文书
学习商务礼仪心得体会
2016/01/22 职场文书