QSettings - where is the location of the ini file?

前端 未结 9 2049
悲哀的现实
悲哀的现实 2021-02-03 21:45

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.

This is

9条回答
  •  迷失自我
    2021-02-03 22:04

    I think you'll find everything you're looking for here : http://doc.qt.io/archives/qt-4.7/qsettings.html

    It's plateform specific, see under :

    Platform-Specific Notes Locations Where Application Settings Are Stored

    You can store Settings in files as well :

    QSettings settings("/home/petra/misc/myapp.ini",
                    QSettings::IniFormat);
    

提交回复
热议问题