Xbox 360 Folder renamer?

ConsoleKid69

Well-Known Member
Newcomer
Joined
Aug 24, 2020
Messages
68
Reaction score
53
Trophies
1
Age
50
XP
1,146
Country
United Kingdom
Hi all

Got 16tb of 360 games I need to change the folder names from the ID to the game name.

Is there something which will look up the ids and change them to the name in bulk?

Ive had a look round and there was some apps 10+ years ago but all links are dead now.

Any ideas?
 
Write a program to loop through the folders, and read the xbe files.

Read here for more info:

Linux script to do it:
Code:
find . -type d -print0 | while read -d $'\0' i; do echo "$i"|sed -e "s/(.*//g" -e "s/.*\///g"; echo "$i"|sed -e "s/(.*//g" -e "s/.*\///g"|od -t x1 -A n|sed -e "s/0a//g" -e "s/ /00/g"; done

You could make a python script or dos script do the same thing.
 
Hi all

Got 16tb of 360 games I need to change the folder names from the ID to the game name.

Is there something which will look up the ids and change them to the name in bulk?

Ive had a look round and there was some apps 10+ years ago but all links are dead now.

Any ideas?
No need to change the names of the folders, the x360 (FSD3/ Aurora) will show them as the actual game name once you scan for games.
 
FSD3/Aurora defaults to displaying only English names, and if they want to change their meaning to other languages such as Chinese characters, they will be displayed
The titles of games that are worldwide releases will always be in English. Titles from companies that release Japanese exclusives (PS4 games) are in Japanese. If there is a game from a Chinese company only for the Chinese market, the title will also be in Chinese. It is not a magic console that can make you tea.
 
  • Like
Reactions: BigOnYa
Just throw them into the folder with the 16 zeros inside your content folder and add the path to Aurora and run a scan. Aurora will recognize the games in GOD format.
 
Hi all

Got 16tb of 360 games I need to change the folder names from the ID to the game name.

Is there something which will look up the ids and change them to the name in bulk?

Ive had a look round and there was some apps 10+ years ago but all links are dead now.

Any ideas?

Write a program to loop through the folders, and read the xbe files.

Read here for more info:

Linux script to do it:
Code:
find . -type d -print0 | while read -d $'\0' i; do echo "$i"|sed -e "s/(.*//g" -e "s/.*\///g"; echo "$i"|sed -e "s/(.*//g" -e "s/.*\///g"|od -t x1 -A n|sed -e "s/0a//g" -e "s/ /00/g"; done

You could make a python script or dos script do the same thing.
If anyone wants a good Python script starting point. I wrote one a few months back that almost does this exact request

It will scan the IDs and spit out a labeled markdown file. So you’d really only need to edit that portion to do a file rename instead of

https://github.com/ItsDeidara/Auror...y/blob/main/generate&update_supportedGames.py
 
  • Like
Reactions: BigOnYa

Site & Scene News

Popular threads in this forum