Hello,

Let say that I have the following ini file :

[General]
path="C:\Directory"

But with :
Qt Code:
  1. QSettings settings(_configFilePath, QSettings::IniFormat);
  2. qDebug()<<settings.value("path");
To copy to clipboard, switch view to plain text mode 

I get this result which is wrong : QVariant(QString, "C:irectory"). How can I get the correct path ?

Thank you