I\'m using QSettings to store some data as ini file in Windows. I want to see the ini file, but I don\'t know what is the location of the ini file.
QSettings
This is
To print out the exact location of your settings file use method fileName method of QSettings class.
QSettings settings("folderName", "fileName"); qDebug() << settings.fileName();
Console output looks then like:
/home/user/.config/folderName/fileName.conf