利用python3修改json文件的指定的value

需求:读取本地的json 文件,并修改制定的键的值,本文主要改写{'resType':'rest'} 成{'resType':'rect'}

本函数需要给定读取文件的路径以及保存的文件的路径,直接上代码。有问题请留言

# import module
import os 
import json

def rest_rect(file_old,file_new):
    
    filename_rest = os.listdir(file_old)  # 获取需要读取的文件的名字
    L = []

    for rest in filename_rest:
        if os.apth.splitext(rest)[1]='.json':
            L.append(os.path.join(file_old,rest)) #创建文件路径

    for f11 in L:
        with open(f11,'rw') as f:
            data = json.load(f)
            data[0]['resType'] = 'rect'
            newpath = os.path.join(file_new,os.path.split(f11)[1])
            with open(newpath,'w') as f2:
                json.dump(data,f2)       # 写入f2文件到本地
# 函数调用 
rest_rect(file_old,file_new)    

 

你可能感兴趣的:(利用python3修改json文件的指定的value)