在我的程序中,我使用类似于
的命令QDir().mkdir(QDir::currentPath()+"/files");
或
if(QDir(QDir::currentPath()+"/profiles").exists())
如果我从内部运行
,它们似乎工作正常test.app/Contents/MacOS/test
但如果我只是双击test.app它就会停止工作。
就我而言,它不会列出该目录中的文件
QDir path(QDir::currentPath()+"/profiles");
QStringList files = path.entryList(QDir::Files);
有什么方法可以解决这个问题吗?
答案 0 :(得分:3)
你应该考虑使用QStandardPaths:当你必须处理路径时,它是一个非常有用的类。
QString exportedPlaylistLocation = QStandardPaths::writableLocation(QStandardPaths::MusicLocation);
但是,您仍然可以使用QCoreApplication::applicationDirPath()
和QCoreApplication::applicationFilePath()