Qt QSettings try to create ini file but none created why?

user63898 picture user63898 · Apr 3, 2011 · Viewed 12.7k times · Source

Im trying to create ini file that will hold me the configuration data, I have singletone class that setting the QSettings object like this :

... #DEFINE CONFIG_FILE_NAME "myconfig.ini"

m_pSettings = new QSettings(QDir::currentPath()+"/"+CONFIG_FILE_NAME,QSettings::IniFormat);

this is accourding the document, but when i look in my application dir, there is none myconfig.ini file created, what im doing wrong ?

Answer

serge_gubenko picture serge_gubenko · Apr 3, 2011

I believe in order to force QSettings file to appear you would need to set at least one value in it and then call sync() method. See if an example below would work for you:

QSettings* settings = new QSettings(QDir::currentPath() + "/my_config_file.ini", QSettings::IniFormat);
settings->setValue("test", "value");
settings->sync();

hope this helps, regards