问题
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 ?
回答1:
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
回答2:
I dont think that "/"+CONFIG_FILE_NAME return the expected result. May be the cause of your problem.. Anyway operator +() is present in QString class so QDir::currentPath() + "/my_config_file.ini" must work fine.
来源:https://stackoverflow.com/questions/5529263/qt-qsettings-try-to-create-ini-file-but-none-created-why