CopyFileToPath(QString sourceDir, QString toDir, bool coverFileExist)
{
/*-----sourceDir目标文件路径 如"C:/text.txt"
*-----toDir目标文件复制的位置 如"D:/text.txt" 表示将c盘根目录下的tetx.txt拷到D盘根目录下以text.txt命名
*-----如果D盘根目录已经存在text.txt 判断coverFileIfExist 如果为true则覆盖否则退出*/
toDir.replace("\\", "/");
if (sourceDir == toDir){ //源目录与目标目录相同,直接返回拷贝不成功
return true;
}
if (!QFile::exists(sourceDir)){ //源目录不存在
qDebug() << "拷贝失败 源目录不存在";
return false;
}
QDir *createFile = new QDir;
bool exist = createFile->exists(toDir);
if (exist){ //如果目标路径中存在源文件 直接覆盖
if (coverFileExist){
createFile->remove(toDir);
}
}
if (!QFile::copy(sourceDir, toDir)){
qDebug() << "copy fail";
return false;
}
qDebug() << "copy success!";
return true;
}
使用:CopyFileToPath(fileinfo.filePath(), GWDocPath, true);
DelDir(const QString &path)使用:DelDir("C:/GWPic");
{
if (path.isEmpty()){
return false;
}
QDir dir(path);
if (!dir.exists()){
return true;
}
dir.setFilter(QDir::AllEntries | QDir::NoDotAndDotDot); //设置过滤
QFileInfoList fileList = dir.entryInfoList(); // 获取所有的文件信息
foreach(QFileInfo file, fileList){ //遍历文件信息
if (file.isFile()){ // 是文件,删除
file.dir().remove(file.fileName());
}
else{ // 递归删除
DelDir(file.absoluteFilePath());
}
}
return dir.rmpath(dir.absolutePath()); // 删除文件夹
}