Page 1 of 1
Change Save Game Path
Posted: Wed Jan 04, 2012 2:56 pm
by Rant6
Is it possible to change the default path for save games? I have two different machines that I play WITPAE on, and I am constantly copying the SAVE folder to a USB stick, and then going home and copying it back to the HD, then back to the stick, etc. I would like to change the save game path to point directly to the USB stick. I did a search but did not come up with anything. Thanks.
Mike
RE: Change Save Game Path
Posted: Wed Jan 04, 2012 9:43 pm
by n01487477
ORIGINAL: Rant6
Is it possible to change the default path for save games? I have two different machines that I play WITPAE on, and I am constantly copying the SAVE folder to a USB stick, and then going home and copying it back to the HD, then back to the stick, etc. I would like to change the save game path to point directly to the USB stick. I did a search but did not come up with anything. Thanks.
Mike
Nope
Solution: Change Save Game Path
Posted: Thu Jan 05, 2012 3:46 pm
by Theages
If you are using Win7 or Vista the 'mklink.exe' command might be able to do the trick. Try at your own risk.
Make a save of your SAVE-Folder
delete the SAVE-Folder
open a command prompt (cmd.exe)
in the command prompt:
change to your witpae-folder
enter the following command: mklink /J SAVE e:\save
(where e:\save is the folder on your USB-stick
The command creates a junction named SAVE. Everything written to this junction is redirected to the real folder.
For Win XP junction.exe might do the trick (
Download page)
RE: Solution: Change Save Game Path
Posted: Thu Jan 05, 2012 4:22 pm
by Apollo11
Hi all,
ORIGINAL: Theages
If you are using Win7 or Vista the 'mklink.exe' command might be able to do the trick. Try at your own risk.
Make a save of your SAVE-Folder
delete the SAVE-Folder
open a command prompt (cmd.exe)
in the command prompt:
change to your witpae-folder
enter the following command: mklink /J SAVE e:\save
(where e:\save is the folder on your USB-stick
The command creates a junction named SAVE. Everything written to this junction is redirected to the real folder.
For Win XP junction.exe might do the trick (
Download page)
Yep... this should work (I use this all the time for years now for various tasks on WinXP, Vista and Win7)...
Leo "Apollo11"
RE: Solution: Change Save Game Path
Posted: Thu Jan 05, 2012 7:42 pm
by Reg
OMG... Windows has finally discovered the advantages of symbolic links for the masses (ie not in a developer Resource Kit).
This was the feature I missed most from AmigaDOS (the Assign command) ~30 years ago. (Unix/Linux has always had it too).
I used to write some interesting scripts such as uploading entire programs to a RAM drive, reassigning (symbolic linking) all the system functions so they ran from RAM and copying all the saved data back to disk at the end of session. Got a tenfold performance increase for no additional hardware. It didn't hurt the Amiga supported huge (for the time) amounts of RAM though since the OS fitted on a floppy you didn't need much.
Thanks for pointing out that XP utility. I can think of a few uses for it already... [:)]
RE: Solution: Change Save Game Path
Posted: Fri Jan 06, 2012 1:25 pm
by Rant6
Great. Will give it a try. Thanks.