Qt C ++不能在没有对象的情况下调用成员函数'~~ const'

时间:2018-07-17 13:42:22

标签: c++ qt

我不断收到此错误:

   cannot call member function 'bool QDir::mkpath(const QString&) const' without object

我的代码:

  QStringList lists;
  lists << "ABC/DEF" << "GHI/JKL" << "MLO/PQR";
  foreach (QString cdir, lists)
     if (!QDir(cdir).exists()) QDir::mkpath(cdir);

我真的不知道如何修改此代码。 请帮助我如何将QDir :: mkpath与QStringList一起使用。谢谢。

0 个答案:

没有答案