Skip to content

Commit

Permalink
add rename_folders.py
Browse files Browse the repository at this point in the history
  • Loading branch information
halgari committed Dec 4, 2024
1 parent da7a94d commit fa426e4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions scripts/rename_folders.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import json
import os
import shutil

# Load game name to ID mapping
with open('json/ids.json', 'r') as f:
game_mappings = json.load(f)

# Iterate over the directories inside 'json' folder
base_path = 'json'
for game_name in os.listdir(base_path):
full_path = os.path.join(base_path, game_name)
if os.path.isdir(full_path) and game_name in game_mappings:
game_id = game_mappings[game_name]
new_full_path = os.path.join(base_path, game_id)
shutil.move(full_path, new_full_path)

0 comments on commit fa426e4

Please sign in to comment.