Bulk convert 3ds files to CIA (dev friendly)

  • Thread starter Thread starter ghean001
  • Start date Start date
  • Views Views 2,815
  • Replies Replies 19

ghean001

Member
Newcomer
Joined
Oct 13, 2021
Messages
12
Reaction score
2
Trophies
0
Age
34
XP
69
Country
Ireland
I'm looking to convert over 1000 3ds files into CIA, is there any bulk way to do this? I've saw things like 3dconv but haven't got my head around setting it up correctly in windows. Any helpful tutorials for it or any over bulk ways?
 
I just remember the old method with xorpads. I think it could be done in bulk iirc, but that's probably majorly outdated.
 
BAT file for Windows

if not exist "CIAfolder" (mkdir CIAfolder)
for /f %%a in ('dir /s /b *.3ds') do (
python3 3dsconv.py --boot9=boot9.bin --output=CIAfolder "%%~fna"
)
echo DONE
pause
 
BAT file for Windows

if not exist "CIAfolder" (mkdir CIAfolder)
for /f %%a in ('dir /s /b *.3ds') do (
python3 3dsconv.py --boot9=boot9.bin --output=CIAfolder "%%~fna"
)
echo DONE
pause
Do you need to put this in the python folder? Also not sure how it reads where to find the .3ds files
 
no. python is probably in your environmental variables. the bat needs to be in the same place as the 3dsconv.py though.
 
no. python is probably in your environmental variables. the bat needs to be in the same place as the 3dsconv.py though.
Current folder set up, with a .3ds game also in the folder. CIA folder still empty.

1634230012490.png
 
what happens when you click on the 3ds.bat? remember, don't have it in program files or program files (x86). have the folder on the root of C or on the desktop.
 
there should be a way to replace all spaces with underscore otherwise it will be tedious. I'd have to google the exact command, but it may be with ren or through powershell.
 
you might try running it on the desktop. it has far less restrictions if it's a permissions issue.
 
Update on the thread.

Thanks guys for the help. Giving the folder permissions, removing spaces and running on desktop solved the problem.
 
  • Like
Reactions: godreborn

Site & Scene News

Popular threads in this forum