python创建和删除目录的方法


Posted in Python onApril 29, 2015

本文实例讲述了python创建和删除目录的方法。分享给大家供大家参考。具体分析如下:

下面的代码可以先创建一个目录,然后调用自定义的deleteDir函数删除整个目录

#--------------------------------------
#      Name: create_directory.py
#     Author: Kevin Harris
# Last Modified: 02/13/04
#  Description: This Python script demonstrates
#         how to create a single
#         new directory as well as delete a directory
#         and everything 
#         it contains. The script will fail 
#         if encountewrs a read-only
#         file
#--------------------------------------
import os
#--------------------------------------
# Name: deleteDir()
# Desc: Deletes a directory and its content recursively.
#--------------------------------------
def deleteDir( dir ):
  for name in os.listdir( dir ):
    file = dir + "/" + name
    if not os.path.isfile( file ) and os.path.isdir( file ):
      deleteDir( file ) # It's another directory - recurse in to it...
    else:
      os.remove( file ) # It's a file - remove it...
  os.rmdir( dir )
#--------------------------------------
# Script entry point...
#--------------------------------------
# Creating a new directory is easy...
os.mkdir( "test_dir" )
# Pause for a moment so we can actually see the directory get created.
input( 'A directory called "tes_dir" was created.\n\nPress Enter to delete it.' )
# Deleting it can be a little harder since it may contain files, so we'll need 
# to write a function to help us out here.
deleteDir( "test_dir" );

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python实现在线音乐播放器
Mar 03 Python
老生常谈Python进阶之装饰器
May 11 Python
python将list转为matrix的方法
Dec 12 Python
在Python中使用Neo4j的方法
Mar 14 Python
详解Pandas之容易让人混淆的行选择和列选择
Jul 10 Python
python 的 scapy库,实现网卡收发包的例子
Jul 23 Python
Python打开文件、文件读写操作、with方式、文件常用函数实例分析
Jan 07 Python
基于Python和PyYAML读取yaml配置文件数据
Jan 13 Python
解决pycharm下pyuic工具使用的问题
Apr 08 Python
Python新手学习函数默认参数设置
Jun 03 Python
Python requests模块安装及使用教程图解
Jun 30 Python
Python机器学习实战之k-近邻算法的实现
Nov 27 Python
python访问系统环境变量的方法
Apr 29 #Python
python中迭代器(iterator)用法实例分析
Apr 29 #Python
在Python中使用HTMLParser解析HTML的教程
Apr 29 #Python
python安装以及IDE的配置教程
Apr 29 #Python
python获取从命令行输入数字的方法
Apr 29 #Python
在Python中处理XML的教程
Apr 29 #Python
python搜索指定目录的方法
Apr 29 #Python
You might like
改德生G88 - 加装等响度低音提升电路
2021/03/02 无线电
php简单静态页生成过程
2008/03/27 PHP
分享php分页的功能模块
2015/06/16 PHP
WordPress主题制作之模板文件的引入方法
2015/12/28 PHP
var与Javascript变量隐式声明
2009/09/17 Javascript
JavaScript中判断整数的多种方法总结
2014/11/08 Javascript
javascript使用shift+click实现选择和反选checkbox的方法
2015/05/04 Javascript
浅谈javascript事件取消和阻止冒泡
2015/05/26 Javascript
JavaScript Array对象详解
2016/03/01 Javascript
判断数组的最佳方法(推荐)
2016/10/11 Javascript
值得分享的Bootstrap Table使用教程
2016/11/23 Javascript
JavaScript基于activexobject连接远程数据库SQL Server 2014的方法
2017/07/12 Javascript
基于JavaScript实现淘宝商品广告效果
2017/08/10 Javascript
基于Swiper实现移动端页面图片轮播效果
2017/12/28 Javascript
vue小白入门教程
2018/04/02 Javascript
JS中验证整数和小数的正则表达式
2018/10/08 Javascript
判断iOS、Android以及PC端的示例代码
2018/11/15 Javascript
在Vue中使用icon 字体图标的方法
2019/06/14 Javascript
html2canvas属性和使用方法以及如何使用html2canvas将HTML内容写入Canvas生成图片
2020/01/12 Javascript
vue实现PC端分辨率适配操作
2020/08/03 Javascript
vue 限制input只能输入正数的操作
2020/08/05 Javascript
Postman无法正常返回结果问题解决
2020/08/28 Javascript
[54:51]Ti4 冒泡赛第二轮LGD vs C9 3
2014/07/14 DOTA
[40:05]DOTA2上海特级锦标赛A组小组赛#1 EHOME VS MVP.Phx第一局
2016/02/25 DOTA
Python中的命令行参数解析工具之docopt详解
2017/03/27 Python
对pandas的行列名更改与数据选择详解
2018/11/12 Python
python进程间通信Queue工作过程详解
2019/11/01 Python
python使用PIL剪切和拼接图片
2020/03/23 Python
Django DRF APIView源码运行流程详解
2020/08/17 Python
解决Python 写文件报错TypeError的问题
2020/10/23 Python
Otel.com:折扣酒店预订
2017/08/24 全球购物
美国气象仪器、花园装饰和墙壁艺术商店:Wind & Weather
2019/05/29 全球购物
商务英语专业应届毕业生求职信
2013/10/28 职场文书
信息专业学生学习的自我评价
2014/02/17 职场文书
小学端午节活动方案
2014/03/13 职场文书
话题作文之财富(600字)
2019/12/03 职场文书