I have to synchronize the savegame of PC 1 + PC 2 to the server and want to keep the savegame up to date for all devices (PC 1 + PC 2). Currently I have for both PCs one file to snychronize it
PC1: C:\Users\Felix\AppData\Roaming\yuzu\nand\user\save\0000000000000000\D7FFFD87691F810693382EF0407621C2 --> to server savegame location
PC2: C:\Users\Felix\AppData\Roaming\yuzu\nand\user\save\0000000000000000\6EBEAEQ000D9E4443CB7768F9BD1CEE7 --> to server savegame location
Because of the different paths for PC 1 and PC 2 it will create an extra folder and download the savegame again --> so I have the savegame double on both PCs. Is there a way to do this more elegant, maybe directly point at the file or something like that?
Different savegame locations to one folder
- Posts: 7
- Joined: 16 Dec 2018
- Posts: 4055
- Joined: 11 Jun 2019
You could create a symbolic link on one of the computers. The link would be named one of the folder names and would point to the other
- Posts: 7
- Joined: 16 Dec 2018
ok, thank you. I will try that.