Hi,
I’m using this to get the path to my external assets that are relative to the player.
System.IO.Directory.GetCurrentDirectory()
Works. However, if I upload the folder (app + zip) to my server and download the zip and unzip it, it won’t get the same path.
This is for Mac OS.
After downloading zip, I control click to run the app (because of permission need for downloaded apps to run on Mac).
The app runs, but the path to the folder is wrong.
This is how it should be and works even on other computers as long as moved via a hard drive… Users/blah blah blah
This is how it shows up after downloading and running the app (after giving permission to run):
private/bar/blah blah blah
How to get the path after downloading to be correct?
Thank you for your help!