On Windows, I use the CSIDL_APPDATA folder to store application data for the current user and C_CSIDL_COMMON_APPDATA for all user application data (shared data).
On Mac OS, I would use:
~/Library/Application Support/YourApp = Application data for the current user /Library/Application Support/YourApp = Application data for all users
("~" = user home directory)
How can I get the above Mac OS folders using FireMonkey?
source share