在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 相关文章推荐
python追加元素到列表的方法
Jul 28 Python
Python中存取文件的4种不同操作
Jul 02 Python
tensorflow实现图像的裁剪和填充方法
Jul 27 Python
Python多进程写入同一文件的方法
Jan 14 Python
pyinstaller打包多个py文件和去除cmd黑框的方法
Jun 21 Python
Python符号计算之实现函数极限的方法
Jul 15 Python
Django 路由控制的实现
Jul 17 Python
解决python web项目意外关闭,但占用端口的问题
Dec 17 Python
python定义类self用法实例解析
Jan 22 Python
python传到前端的数据,双引号被转义的问题
Apr 03 Python
5行Python代码实现图像分割的步骤详解
May 25 Python
python 实现一个图形界面的汇率计算器
Nov 09 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中通过ADODB库实现调用Access数据库之修正版本
2006/12/31 PHP
支持中文的php加密解密类代码
2011/11/27 PHP
php获取随机数组列表的方法
2014/11/13 PHP
php通过记录IP来防止表单重复提交方法分析
2014/12/16 PHP
Laravel框架搜索分页功能示例
2019/02/01 PHP
PHP Include文件实例讲解
2019/02/15 PHP
php常用字符串长度函数strlen()与mb_strlen()用法实例分析
2019/06/25 PHP
js调试系列 断点与动态调试[基础篇]
2014/06/18 Javascript
用JavaScript实现PHP的urlencode与urldecode函数
2015/08/13 Javascript
JavaScript获取当前url根目录(路径)
2016/06/17 Javascript
es6的数字处理的方法(5个)
2017/03/16 Javascript
Vue学习笔记进阶篇之vue-router安装及使用方法
2017/07/19 Javascript
JQuery元素快速查找与操作
2018/04/22 jQuery
详解vue-cli官方脚手架配置
2018/07/20 Javascript
Vue下拉框回显并默认选中随机问题
2018/09/06 Javascript
Layui弹出层 加载 做编辑页面的方法
2019/09/16 Javascript
小程序实现横向滑动日历效果
2019/10/21 Javascript
Node.js创建一个Express服务的方法详解
2020/01/06 Javascript
[53:10]Secret vs Pain 2018国际邀请赛小组赛BO2 第一场 8.17
2018/08/20 DOTA
Python中分数的相关使用教程
2015/03/30 Python
Python读取指定目录下指定后缀文件并保存为docx
2017/04/23 Python
python中Matplotlib实现绘制3D图的示例代码
2017/09/04 Python
python互斥锁、加锁、同步机制、异步通信知识总结
2018/02/11 Python
Python3实现转换Image图片格式
2018/06/21 Python
Python Django 命名空间模式的实现
2019/08/09 Python
荷兰皇家航空公司中国官网:KLM中国
2017/12/13 全球购物
Nike加拿大官网:Nike.com (CA)
2019/04/09 全球购物
Hibernate持久层技术
2013/12/16 面试题
高级人员简历的自我评价分享
2013/11/03 职场文书
kfc实习自我鉴定
2013/12/14 职场文书
竞聘上岗演讲
2014/05/19 职场文书
教研处工作方案
2014/05/26 职场文书
优秀本科毕业生自荐信
2014/07/04 职场文书
鸟的天堂导游词
2015/01/31 职场文书
python基础详解之if循环语句
2021/04/24 Python
Java并发编程之原子性-Atomic的使用
2022/03/16 Java/Android