删除文件:
QFile fileTemp(filename); fileTemp.remove();
复制文件:
QFile::copy(old_name,new_name);
移动文件:
QString old_name="路径A"; QString new_name="新路径A"; bool x= QFile::rename(old_name,new_name); //A路径移动到B路径
Qt获取当前程序运行路径(exe可执行文件位置)
#include <QCoreApplication> //获取程序当前运行目录 QString fileName = QCoreApplication::applicationDirPath();