I would like to save the settings for an AIR application in a local SQLite database. Wherever I read, it is recommended to use File.applicationStorageDirectoryto save the database file.
My problem is that in most cases, the AIR application is first launched by the administrator, who configures and configures the application (and saves the settings in the database), and then is used by other users. And what would I like to know if it is possible to save the database in a place from which each user can download it? As I understand it, File.applicationStorageDirectory points to the user directory?
It is possible, it is also possible for administrators to set the correct permissions and so on, but I do not want to complicate the installation ...
source
share