python创建和删除⽬录的⽅法本⽂实例讲述了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
else:
#--------------------------------------
# Script
#--------------------------------------
# Creating a new directory
os.mkdir( "test_dir" )
python安装教程非常详细# 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程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论