I have develop a small application that uses a SQLite database. Now, I want to create and store this database in user space (in terms of hard disk) in the same way I store settings with QSettings.
I can use QDir and similar classes to find where the user home is, but I want to avoid hidden directories creation, I am looking for a transparent solution and operating system independent.
Can I use the Qt Resources System to create the database into the user home (and find it later)?
How can I make it easy?