我有一个包含许多JSON文件的文件夹。
我想获取所有.json
个文件,其中文件名以_LAST.json
结尾,并将它们合并为一个JSON文件。要处理的每个文件都命名为:
Bill_LAST.json
Jane_LAST.json
Kitty_LAST.json
Bill_LAST.json
看起来像:
[{
"Date": "2012-11-19",
"Name": "Bill",
"Age": 54,
"Sex": "M"
}]
答案 0 :(得分:5)