gpt4 book ai didi

python - 使用Python修改json属性但收到FileNotFoundError : [Errno 2] No such file or directory

转载 作者:行者123 更新时间:2023-12-02 18:30:56 25 4
gpt4 key购买 nike

我的文件夹中有 25 个 json 文件,分别命名为 0.json 到 24.json,我正在尝试批量打开并重命名每个文件内的周边“图像”,目前这些文件都有一个占位符“https:///”在“图像”字段中。

我在像 dropbox 这样的网站上有一个中央文件夹,其 url 结构为 https://weburlofnewimage/0、/1、/2 等。所以我想打开每个文件,并更改将“image”键替换为“https://weburlofnewimage/+ 当前文件编号 + '.png'”。

每个 json 文件的 .json 当前显示如下:


{"image": "https://", "attributes": [{"trait_type": "box color", "value": "blue"}, {"trait_type": "box shape", "value": "square"}]}

但应该是

{"image": "https://weburlofnewimage/0", "attributes": [{"trait_type": "box color", "value": "blue"}, {"trait_type": "box shape", "value": "square"}]}

到目前为止,我已经尝试过以下方法,但我相信我正在掉入兔子洞

import json
import os

folderPath = r'/path/FolderWithJson'
fileNumber = 0

for filename in os.listdir(folderPath):
with open(filename, 'r') as f:
data = json.load(f)
data['id'] = str('https://weburlofnewimage/' + str(fileNumber) + '.png')
os.remove(filename)
with open(filename, 'w') as f:
json.dump(data, f, indent=4)

fileNumber +=1

并尝试过:

import os
import json

folderPath = r'/path/FolderWithJson'
fileNumber = 0

for filename in os.listdir(folderPath):
with open(filename, 'r+') as f:
data = json.load(f)
data['image'] = str('https://weburlofnewimage/' + str(fileNumber)
f.seek(0)
json.dump(data, f, indent=4)
f.truncate() # remove remaining part
fileNumber +=1


但是,在这两种情况下我都会收到以下错误:

FileNotFoundError: [Errno 2] No such file or directory: '20.json'

但是,该文件确实在该目录中...

最佳答案

filename 变量仅保存您正在遍历的文件夹中的文件名,而不是该文件的完整路径。您需要指定文件的完整绝对路径,或运行程序的相对路径。

使用os.path.join将组合您定义的文件夹相对路径和该文件夹中的文件名

for filename in os.listdir(folderPath):
filePath = os.path.join(folderPath, filename)
with open(filePath, 'r+') as f:
# and so on

此外,(正如您所发现的)假设文件夹中的每个文件都是 json 是不安全的。您还应该添加一个防护来验证它是 .json。

for filename in os.listdir(folderPath):
if not filename.endswith(".json"): continue
filePath = os.path.join(folderPath, filename)
with open(filePath, 'r+') as f:
# and so on

关于python - 使用Python修改json属性但收到FileNotFoundError : [Errno 2] No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69420075/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com