you might want to specify the organization name and the application name using QCoreApplication::setOrganizationName() and QCoreApplication::setApplicationName(), and then use the default QSettings constructor:
QCoreApplication::setOrganizationName("MySoft");
QCoreApplication::setOrganizationDomain("mysoft.com");
QCoreApplication::setApplicationName("Star Runner");
...
QSettings settings;
Тут как я понимаю исходя из данных путь к QSettings вычисляется благодоря магии. А если у меня путь задан явно
QSettings setting("path/to/settings", IniFormat);
могу ли я сделать так, чтобы можно было просто писать
QSettings settings;
?
Попробуй установить https://doc.qt.io/qt-5/qsettings.html#setDefaultFormat , где укажи IniFormat
Обсуждают сегодня