Mac OS Application Data Folders Using FireMonkey

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?

+4
source share
1 answer

Part of your question: application data for current user = GetHomePath

+3
source

Source: https://habr.com/ru/post/1379110/


All Articles