import os
import json
input_folder = "./tests/string" output_file = "./tests_string.json"
def merge_json_files(input_folder, output_file):
combined_data = []
for filename in sorted(os.listdir(input_folder)):
if filename.endswith(".json"):
filepath = os.path.join(input_folder, filename)
try:
with open(filepath, "r") as file:
data = json.load(file)
entry = {
"body": data.get("body", []),
"string": data.get("string", [])
}
combined_data.append(entry)
except Exception as e:
print(f"Error processing file {filename}: {e}")
try:
with open(output_file, "w") as outfile:
json.dump(combined_data, outfile, indent=2)
print(f"Successfully written to {output_file}")
except Exception as e:
print(f"Error writing output file: {e}")
merge_json_files(input_folder, output_file)