1. 获取Temp目录:
QString strDir= QDir::tempPath();
2. 获取AppData目录:
QDir dir = QDir::temp();
dir.cdUp();
QString strDir = dir.absolutePath();
3. 获取桌面目录:
QString strDir = QDir::homePath() + "/Desktop";
1. 获取Temp目录:
QString strDir= QDir::tempPath();
2. 获取AppData目录:
QDir dir = QDir::temp();
dir.cdUp();
QString strDir = dir.absolutePath();
3. 获取桌面目录:
QString strDir = QDir::homePath() + "/Desktop";