I'm writing a portable app for a game, but said game stores it's data in My Games in the Documents folder. To make said app portable I've got two choices if I have read the documentation correctly:
- Use [Enviroment] in launcher.ini to set the folder like this:
USERPROFILE=%PAL:DataDir%\1.0-alpha
- Use [DirectoriesMove] to move the folder to a subdirectory in /Data like this:
exampleggame=%DOCUMENTS%
Which of these two is typically used, and why?