qt创建多层目录_Qt创建目录

本文介绍了在Qt中如何判断文件夹或文件是否存在,并提供了多种实现方法,包括使用QDir和QFileInfo类的函数。同时,文章详细展示了如何在文件夹不存在时进行创建,特别强调了正确判断文件和文件夹存在的方法,如QFileInfo的isFile()和isDir(),以及QDir和QFile的exists()方法。
摘要由CSDN通过智能技术生成

1. 判断文件夹是不是存在参数说明:QString fullPath;//文件夹全路径/*方法1*/bool isDirExist(QString fullPath){    QDir dir(fullPath);    if(dir.exists())    {      return true;    }    return false;}/*方法2*/bool isDirExist(QString fullPath){    QFileInfo fileInfo(fullPath);    if(fileInfo.isDir())    {      return true;    }    return false;}2. 判断文件是不是存在参数说明:QString fullFileName;//文件全路径(包含文件名)/*方法1*/bool isFileExist(QString fullFileName){    QFileInfo fileInfo(fileFullName);    if(fileInfo.isFile())    {        return true;    }    return false;}3、判断文件或文件夹是不是存在(即不确定字符串是文件还是文件夹路径)参数说明:QString fullFilePath;//路径名/*方法1*/bool isFileExist(QString fullFilePath){    QFileInfo fileInfo(fullFilePath);    if(fileInfo.exists())    {        return true;    }    return false;}/*方法2*/bool isFileExist(QString fullFilePath){    QFile file(fullFilePath);    if(file.exists())    {        return true;    }    return false;}4、判断文件夹是否存在,不存在则创建/*方法1*/bool isDirExist(QString fullPath){    QDir dir(fullPath);    if(dir.exists())    {      return true;    }    else    {       bool ok = dir.mkdir(fullPath);//只创建一级子目录,即必须保证上级目录存在       return ok;    }}/*方法1*/bool isDirExist(QString fullPath){    QDir dir(fullPath);    if(dir.exists())    {      return true;    }    else    {       bool ok = dir.mkpath(fullPath);//创建多级目录       return ok;    }}5、以下为摘录的其他网络测试代码{    QFileInfo fi("C:/123");                     // 目录存在    qDebug() << fi.isFile();                    // false    qDebug() << fi.isDir();                     // true    qDebug() << fi.exists();                    // true    qDebug() << fi.isRoot();                    // false    qDebug() << QFile::exists("C:/123");        // true    qDebug() << QDir("C:/123").exists();        // true    fi.setFile("C:/ABC");                       // 目录不存在    qDebug() << fi.isFile();                    // false    qDebug() << fi.isDir();                     // false    qDebug() << fi.exists();                    // false    qDebug() << fi.isRoot();                    // false    qDebug() << QFile::exists("C:/ABC");        // false    qDebug() << QDir("C:/ABC").exists();        // false    fi.setFile("C:/");                          // 存在的驱动器    qDebug() << fi.isFile();                    // false    qDebug() << fi.isDir();                     // true    qDebug() << fi.exists();                    // true    qDebug() << fi.isRoot();                    // true    qDebug() << QFile::exists("C:/");           // true    qDebug() << QDir("C:/").exists();           // true    fi.setFile("Z:/");                          // 不存在的驱动器    qDebug() << fi.isFile();                    // false    qDebug() << fi.isDir();                     // false    qDebug() << fi.exists();                    // false    qDebug() << fi.isRoot();                    // false    qDebug() << QFile::exists("Z:/");           // false    qDebug() << QDir("Z:/").exists();           // false    fi.setFile("C:/123.lnk");                   // 快捷方式存在且指向的文件也存在    qDebug() << fi.isFile();                    // true    qDebug() << fi.isDir();                     // false    qDebug() << fi.exists();                    // true    qDebug() << fi.isRoot();                    // false    qDebug() << QFile::exists("C:/123.lnk");    // true    qDebug() << QDir("C:/123.lnk").exists();    // false    fi.setFile("C:/456.lnk");                   // 快捷方式存在但指向的文件不存在    qDebug() << fi.isFile();                    // false    qDebug() << fi.isDir();                     // false    qDebug() << fi.exists();                    // false    qDebug() << fi.isRoot();                    // false    qDebug() << QFile::exists("C:/456.lnk");    // false    qDebug() << QDir("C:/456.lnk").exists();    // false}可以看到,容易让人感到混乱的是exists方法,这个方法是通用的判断方法,可以看成是这样的表达式exists() == (isFile() || isDir()) 也就是说判断文件或文件夹是否存在单纯用exists方法是不严谨的比如你的本意是判断文件是否存在,但文件不存在,而恰巧有个同名的文件夹,那么exists也会返回true。文件夹也是同理根据上面的代码作出的一点总结准确判断文件是否存在1.用QFileInfo::isFile()方法 准确判断文件夹是否存在1.用QFileInfo::isDir()方法2.用QDir::exists()方法 不确定字符串是文件还是文件夹路径1.用QFileInfo::exists()方法2.用QFile::exists()方法

时间:2019-06-13

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值