【python】递归输出指定路径的所有目录和文件和递归删除
程序员文章站
2022-05-14 23:03:17
...
说明:
返回path指定的文件夹包含的文件或文件夹的名字的列表:
1、os.listdir('/root/python/') #列出当前目录下所有文件夹和文件名称
os.path 模块主要用于获取文件的属性:
2、os.path.isdir('/abc') #判断是否是目录,返回布尔值,不存在也返回false
3、os.path.isfile('/etc/passwd') #判断是否是文件
4、os.path.join('/etc/', 'passwd') #连接文件,
列出文件夹和文件:
方法一:
def print_files(path):
lsfiles = os.listdir(path)
dirs = [i for i in lsfiles if os.path.isdir(os.path.join(path, i))]
if dirs:
for i in dirs:
print_files(os.path.join(path, i))
files = [i for i in lsfiles if os.path.isfile(os.path.join(path, i))]
for f in files:
print(os.path.join(path, f)
print_files("D:\Python\makePerfect\com\com")
方法二:
def print_files(path):
lsfiles = os.listdir(path)
for file in lsfiles:
filepath = os.path.join(path, file)
if os.path.isdir(filepath):
print_files(filepath)
else:
print(os.path.join(path, file))
print_files("D:\Python\makePerfect\com\com")
删除:
方法一:
import os
def local_rm(dirpath):
if os.path.exists(dirpath):
files = os.listdir(dirpath)
for file in files:
filepath = os.path.join(dirpath, file).replace("\\",'/')
if os.path.isdir(filepath):
local_rm(filepath)
else:
os.remove(filepath)
os.rmdir(dirpath)
方法二:
import shutil
shutl.rmtree(dir_path)
推荐阅读