Before the data folder was inside the 'sandbox' path so :
SetFolder ("/")
SetFolder("MyFolder")
SetFolder ("Images")
LoadImage ("toto.png")
..
...
LoadImage ("toto2.png")
LoadImage ("toto3.png")
But now i decide to change this folder to GetDocumentsPath() + "MyFolder"
So imagine the numbers of LoadImage path to change ! (Huge project) !
LoadImage ("RAW:" + GetDocumentsPath() + "MyFolder/images" + "toto2.png")
LoadImage ("RAW:" + GetDocumentsPath() + "MyFolder/images" + "toto3.png")
...
If a can use this :
MySetFolder (GetDocumentsPath() + "MyFolder/images")
LoadImage ("toto.png")
..
...
LoadImage ("toto2.png")
LoadImage ("toto3.png")
i'm affraid that's not possible !