11、Qt:创建/删除文件夹、拷贝文件

一、创建文件夹

复制代码
声明:
bool createPath(QString strPath); 

定义:
/**
* @brief MainWindow::CreatePath 创建文件夹
* @param strPath 要创建的文件夹路径
* @return 创建成功返回true,失败返回false
*/
bool MainWindow::createPath(QString strPath)
{
    QDir dir;
    bool bExist = dir.exists(strPath);
    if(!bExist) //如果文件夹不存在
    {
        return dir.mkpath(strPath); //创建文件夹
    }

    return true;
}

二、删除当前目录及其下所有文件

复制代码
声明:
bool deleteDir(QString strPath); 

定义:
/**
* @brief MainWindow::deleteDir 删除当前目录及其下所有文件
* @param strPath 要删除的文件夹路径
* @return 删除成功返回true,失败返回false
*/
bool MainWindow::deleteDir(QString strPath)
{
    if(strPath.isEmpty())
    {
        return false;
    }

    QDir dir(strPath);
    if(!dir.exists()) //不是文件夹
    {
    return true;
    }

    //删除当前目录及其下所有文件
    return dir.removeRecursively();
}

三、把文件拷贝到指定路径中

复制代码
声明:
bool copyFileToPath(QString oldFile, QString newPath, bool isDelete = true); 

定义:
/**
* @brief MainWindow::copyFileToPath 把文件拷贝到指定路径中
* @param oldFile 要拷贝的文件
* @param newPath 目标路径
* @param isDelete 当目标路径中有同名文件时,是否删除,重新拷贝
* @return 拷贝成功返回true,失败返回false
*/
bool MainWindow::copyFileToPath(QString oldFile, QString newPath, bool isDelete)
{
    newPath.replace("\\", "/");

    QFileInfo fiSrc(oldFile);
    if(fiSrc.absoluteFilePath() == newPath) //文件的源路径与目标路径一样时,不需要再拷贝了
    {
        return true;
    }

    if(!createPath(newPath)) //创建文件夹失败
    {
        return false;
    }

    //判断newPath最后一个字符是否为"/"
    QString strNewFile; //新文件的路径加名称
    if(newPath.at(newPath.size()-1) == "/")
    {
        strNewFile = newPath + fiSrc.fileName();
    }
    else
    {
        strNewFile = newPath + "/" + fiSrc.fileName();
    }

    //判断文件是否存在
    QFile fiNew(strNewFile);
    if(fiNew.exists())
    {
        if(isDelete) //删除原有文件
        {
            fiNew.remove();
        }
        else
        {
            return true;
        }
    }

    //文件拷贝
    if(!QFile::copy(oldFile, strNewFile))
    {
        QString str = "拷贝文件失败:" + oldFile + "->" + strNewFile;
        qCritical() << str;
        deleteDir(newPath);
        return false;
    }
    return true;
}

四、获取文件夹下的文件

复制代码
声明:
bool findFile(QString path, QVector<QString> &fileNames, QString strSuffix = ""); 
定义:
/**
* @brief MainWindow::findFile 获取文件夹下的文件
* @param path 文件夹路径
* @param fileNames 文件集合
* @param strSuffix 文件后缀,只有指定后缀的文件,如.txt
* @return 获取成功返回true,失败返回false
*/
bool MainWindow::findFile(QString path, QVector<QString>& fileNames, QString strSuffix)
{
    QDir dir(path);
    if(!dir.exists()) //文件夹不存在
    {
        return false;
    }

    //获取filePath下所有文件夹和文件
    dir.setFilter(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot);//文件夹|文件|不包含./和../

    //排序文件夹优先
    dir.setSorting(QDir::DirsFirst);

    //获取文件夹下所有文件(文件夹+文件)
    QFileInfoList list = dir.entryInfoList();

    if(list.size() == 0) //没有文件
    {
        return false;
    }

    //遍历
    for(int i = 0; i < list.size(); i++)
    {
        QFileInfo fileInfo = list.at(i);

        if(fileInfo.isDir())//判断是否为文件夹
        {
            findFile(fileInfo.filePath(), fileNames, strSuffix); //递归开始
        }
        else
        {
            if(strSuffix == "")
            {
                fileNames.push_back(list.at(i).filePath()); //保存全部文件路径+文件名
            }
            else if(fileInfo.suffix() == strSuffix) //设定后缀
            {
                fileNames.push_back(list.at(i).filePath()); //保存全部文件路径+文件名
            }
        }
    }

    return true;
}

五、将源路径下所有文件拷贝到目的路径

复制代码
声明:
bool CopyPathFileToPath(QString oldPath, QString newPath, bool isDelete = true); 

定义:
/**
* @brief MainWindow::CopyPathFileToPath 将源路径下所有文件拷贝到目的路径
* @param oldPath 源路径
* @param newPath 目的路径
* @param bCoverFileIfExist 当目标路径中有同名文件时,是否删除,重新拷贝
* @return 拷贝成功返回true,失败返回false
*/
bool MainWindow::CopyPathFileToPath(QString oldPath, QString newPath, bool isDelete)
{
    newPath.replace("\\", "/");

    QVector<QString> vFileNames;
    if(!findFile(oldPath, vFileNames))
    {
        return false;
    }

    //oldPath中最后一个文件夹名 赋值给 newPath
    QString strName = oldPath.split("/").last();
    if(newPath.at(newPath.size()-1) == "/")
    {
        newPath = newPath + strName;
    }
    else
    {
        newPath = newPath + "/" + strName;
    }

    for(int i = 0; i < vFileNames.size(); ++i)
    {
        QString strPath = vFileNames.at(i);
        QString strTempDir = strPath.mid(oldPath.size());
        int nNamePos = strTempDir.lastIndexOf("/");
        QString strTempPath = strTempDir.left(nNamePos+1);
        QString strNewPath = newPath + strTempPath;

        if(!copyFileToPath(strPath, strNewPath, isDelete))  //拷贝失败
        {
            deleteDir(newPath);
            return false;
        }
    }

    return true;
}
相关推荐
阿里嘎多学长2 小时前
2026-02-16 GitHub 热点项目精选
开发语言·程序员·github·代码托管
啊吧怪不啊吧4 小时前
C++之基于正倒排索引的Boost搜索引擎项目usuallytool部分代码及详解
开发语言·c++·搜索引擎·项目
CeshirenTester4 小时前
9B 上端侧:多模态实时对话,难点其实在“流”
开发语言·人工智能·python·prompt·测试用例
发现你走远了4 小时前
Windows 下手动安装java JDK 21 并配置环境变量(详细记录)
java·开发语言·windows
游乐码5 小时前
c#类和对象
开发语言·c#
黎雁·泠崖5 小时前
Java常用类核心详解(一):Math 类超细讲解
java·开发语言
懒惰成性的6 小时前
12.Java的异常
java·开发语言
-To be number.wan6 小时前
Python数据分析:时间序列数据分析
开发语言·python·数据分析
前路不黑暗@6 小时前
Java项目:Java脚手架项目的通用组件的封装(六)
java·开发语言·spring
马士兵教育6 小时前
程序员简历如何编写才能凸显出差异化,才能拿到更多面试机会?
开发语言·后端·面试·职场和发展·架构