zl程序教程

您现在的位置是:首页 >  工具

当前栏目

Qt相对路径转绝对路径

Qt 绝对路径 相对路径
2023-09-14 09:07:11 时间
将相对路径转化为绝对路径:
QDir temDirs("../../123.png");
QString filePath = temDirs.absolutePath();
这样就获得了一个文件的绝对路径了。