Dolphin, the GameCube and Wii emulator - Forums
Saved game transfer to new builds - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Support (https://forums.dolphin-emu.org/Forum-support)
+--- Thread: Saved game transfer to new builds (/Thread-saved-game-transfer-to-new-builds)



Saved game transfer to new builds - Neesh - 12-18-2009

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


RE: Saved game transfer to new builds - Apostacious - 12-18-2009

copy your "Wii" and "GC" folders in "User" to the new build.


RE: Saved game transfer to new builds - Neesh - 12-18-2009

Thanks dude. I thought I tried that but I must have done something wrong.


RE: Saved game transfer to new builds - a mad pigeon - 12-18-2009

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