Dolphin, the GameCube and Wii emulator - Forums

Full Version: Saved game transfer to new builds
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

Not sure if I'm missing something simple here. Could someone let me know how to transfer my saved games from one build to the next?

Thanks
copy your "Wii" and "GC" folders in "User" to the new build.
Thanks dude. I thought I tried that but I must have done something wrong.
I made a batch file to take care of this for me, makes it easier and makes me lazier Big Grin

Example:
Code:
@echo off
xcopy "C:\Users\Clint\Documents\Dolphin_x64\User\Wii" "C:\Users\Clint\Documents\DolphinSaves\Wii" /y /s /e
xcopy "C:\Users\Clint\Documents\Dolphin_x64\User\GC" "C:\Users\Clint\Documents\DolphinSaves\GC" /y /s /e

Code:
@echo off
xcopy "[original dolphin wii saves]" "[destination dolphin wii saves]" /y /s /e
xcopy "[original dolphin GC saves]" "[destination dolphin GC saves]" /y /s /e