Python3 os模块
程序员文章站
2022-06-12 22:45:52
...
1.使用os.walk遍历文件目录
import os
sPath = "G:\\test"
# os.walk遍历
s = tuple(os.walk(sPath, True, None, False))
print(s)
2.使用深度遍历方式遍历文件目录
# 深度遍历
def DFS(absPath) :
if (os.path.isabs(absPath)) :
if (os.path.exists(absPath) == False):
print("当前路径不存在")
return
if (os.path.isfile(absPath)) :
return
for v in os.listdir(absPath) :
subPath = os.path.join(absPath, v)
DFS(subPath)
print(subPath)
else :
return
3.删除包含“f”的文件夹
def DelDirByDFS(absPath) :
if (os.path.isfile(absPath)) :
return
if (absPath.find("f") != -1) :
for v in os.listdir(absPath) :
subPath = os.path.join(absPath, v)
if (os.path.isfile(subPath)) :
print("删除文件成功")
os.remove(subPath)
elif (os.path.isdir(subPath)) :
DelDirByDFS(subPath)
print("删除文件夹成功")
os.rmdir(absPath)
return
for v in os.listdir(absPath):
subPath = os.path.join(absPath, v)
if (os.path.isdir(subPath)):
DelDirByDFS(subPath)
4.删除包含“abcd”的文件
def DelFile(absPath) :
if (os.path.isfile(absPath)) :
if (absPath.find("abcd") != -1) :
print("删除文件成功")
os.remove(absPath)
return
for v in os.listdir(absPath):
subPath = os.path.join(absPath, v)
DelFile(subPath)
推荐阅读
-
python3图片转换二进制存入mysql
-
nodejs入门教程六:express模块用法示例
-
smartcomb:用php实现的web模块拼合器,smartcombweb
-
PostgreSQL 安装断点调试模块 pldebugger
-
python3 爬取图片的实例代码
-
python3的输入方式及多组输入方法
-
Apache+PHP+Mysql OS X 10.9 Mavericks WEB 服务器配置
-
在Windows2000下以Apache模块方式安装PHP4.1.1_PHP
-
nginx geoip 模块实现地区性负载均衡
-
compile hadoop-2.5.x on OS X(macbook)