Qt 判断文件或文件夹是否存在及创建文件夹

你的名字 2024-04-17 19:27 179阅读 0赞
  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())
    {

    1. 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

  1. fi.setFile("C:/ABC"); // 目录不存在
  2. qDebug() << fi.isFile(); // false
  3. qDebug() << fi.isDir(); // false
  4. qDebug() << fi.exists(); // false
  5. qDebug() << fi.isRoot(); // false
  6. qDebug() << QFile::exists("C:/ABC"); // false
  7. qDebug() << QDir("C:/ABC").exists(); // false
  8. fi.setFile("C:/"); // 存在的驱动器
  9. qDebug() << fi.isFile(); // false
  10. qDebug() << fi.isDir(); // true
  11. qDebug() << fi.exists(); // true
  12. qDebug() << fi.isRoot(); // true
  13. qDebug() << QFile::exists("C:/"); // true
  14. qDebug() << QDir("C:/").exists(); // true
  15. fi.setFile("Z:/"); // 不存在的驱动器
  16. qDebug() << fi.isFile(); // false
  17. qDebug() << fi.isDir(); // false
  18. qDebug() << fi.exists(); // false
  19. qDebug() << fi.isRoot(); // false
  20. qDebug() << QFile::exists("Z:/"); // false
  21. qDebug() << QDir("Z:/").exists(); // false
  22. fi.setFile("C:/123.lnk"); // 快捷方式存在且指向的文件也存在
  23. qDebug() << fi.isFile(); // true
  24. qDebug() << fi.isDir(); // false
  25. qDebug() << fi.exists(); // true
  26. qDebug() << fi.isRoot(); // false
  27. qDebug() << QFile::exists("C:/123.lnk"); // true
  28. qDebug() << QDir("C:/123.lnk").exists(); // false
  29. fi.setFile("C:/456.lnk"); // 快捷方式存在但指向的文件不存在
  30. qDebug() << fi.isFile(); // false
  31. qDebug() << fi.isDir(); // false
  32. qDebug() << fi.exists(); // false
  33. qDebug() << fi.isRoot(); // false
  34. qDebug() << QFile::exists("C:/456.lnk"); // false
  35. 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()方法
————————————————
版权声明:本文为CSDN博主「lusirking」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lusirking/article/details/51644782

发表评论

表情:
评论列表 (有 0 条评论,179人围观)

还没有评论,来说两句吧...

相关阅读