IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> [python]一个遍历多层文件夹,然后替换文件内容和目录名称的案例 -> 正文阅读

[Python知识库][python]一个遍历多层文件夹,然后替换文件内容和目录名称的案例

假如有如下目录结构:
?? ? ?root
?? ??? ?first
?? ??? ??? ?a.txt
?? ??? ??? ?b.txt
?? ??? ?second
?? ??? ??? ?c.txt
?? ??? ??? ?d.txt
?? ??? ?third
?? ??? ??? ?first
?? ??? ??? ??? ?a.txt
?? ??? ??? ?second
需要把所有文件中的变量 ${txt_date} 替换为 ${start_date},把所有名称为first的目录改为one、second的目录改为two

代码:

import os,time,configparser,sys,getopt
dirHome='app_'
'''解析参数文件'''
def parseCofig(configFile):
    try:
        global contentPairs
        global dirPairs
        if (os.path.exists(configFile) and os.path.isfile(configFile)) :
            cf = configparser.RawConfigParser()
            cf.optionxform = lambda option: option
            cf.read(configFile)
            contentPairs = cf.items('file')
            dirPairs = cf.items('dir')
            return 0;
        else:
            writeLog("ERROR", "config file [" + configFile + "] not exists!")
            exit(1)
    except Exception as e:
        writeLog("ERROR", str(e))
        exit(1)

#打印日志
def writeLog(logtype, msg):
    print("[{:5}][{}] {}".format(logtype, time.strftime("%Y-%m-%d %H:%M:%S"), msg))
    return

'''遍历文件夹'''
def walkFile(file):
    try:
        if os.path.isdir(file):
            for root, dirs, files in os.walk(file):
                writeLog("INFO", "scan directory [" + root + "]")
                if(len(files)==0 and len(dirs)==0):
                    writeLog("WARN", "directory [" + root + "] is null!")

                    handleFile(root)
                else:
                    for f in files:
                        handleFile(os.path.join(root, f))

        else:
            handleFile(file)
    except Exception as e:
        writeLog("ERROR", str(e))
        exit(1)

def handleFile(file):
    target = replacePath(file)
    dir=''
    if(os.path.isfile(os.path.abspath(file))):
        dir = os.path.dirname(os.path.abspath(target))
    else:
        dir = os.path.abspath(target)

        #创建目录
    if(os.path.exists(dir) and os.path.isdir(dir)):
        {
        #writeLog("WARN", "directory [" + dir + "] already exists!")
        }
    else:
        { os.mkdir(dir) }

    #替换文件变量
    if (os.path.isfile(file)):
        str = replaceContent(file)
        writeLog("INFO", "write [" + os.path.abspath(file) + "] to ["+os.path.abspath(target)+"]")
        with open(target, 'w', encoding='utf-8') as f:
            f.write(str)

def replaceContent(file):
    writeLog("INFO", "replace file content,fileName[" + file + "]")
    with open(file, 'r', encoding='utf-8') as f:
        str = f.read()
        for p in contentPairs:
            if len(p) == 2:
                str = str.replace(p[0], p[1])
        return str
    return None

def replacePath(filePath):
    newFilePath=''
    for p in dirPairs:
        if len(p) == 2:
            newFilePath = dirHome+filePath.replace(p[0], p[1])
    if(filePath!=newFilePath):
        writeLog("INFO", "replace file directory [" + filePath + "] to "+"["+newFilePath+"]")
    return newFilePath

def main():
    argArr=sys.argv

    if(len(argArr)<=1):
        parseCofig("parm.txt")
        walkFile("root")
    elif(len(argArr)==2):
        parseCofig("parm.txt")
        walkFile(argArr[1])
    elif(len(argArr)==3):
        parseCofig(argArr[1])
        walkFile(argArr[2])
    else:
        writeLog("ERROR", "arg error!")

main();

把以上代码文件放入和root目录相同的目录中

在和root目录相同的目录中编辑一个参数文件parm.txt,内容为:

[file]
${txt_date}=${start_date}
[dir]
first=one
second=two

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-12-16 17:37:39  更:2021-12-16 17:38:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 5:26:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码