每次我启动应用程序时,都会调用 mkpath,就好像以前没有创建目录一样,尽管我总是得到“创建路径”日志。我是否需要指定任何特殊权限才能保存到内部存储中?mypath
好像/data/data/org.qtproject.example.WierszeApp/files/.local/share/libWierszeApp.so/
QDir mypath(QStandardPaths::writableLocation(QStandardPaths::DataLocation));
if(!mypath.cd("images"))
{
if(mypath.mkpath("images"))
qDebug() << "path created";
else
qDebug() << "path not created";
}
else
{
qDebug() << "inside dir";
}