qt判断文件是否存在
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()方法
---------------------
作者:lusirking
来源:CSDN
原文:https://blog.csdn.net/lusirking/article/details/51644782
版权声明:本文为博主原创文章,转载请附上博文链接!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
2018-03-21 nvidia显卡驱动
2018-03-21 训练超参数, 出现 Cannot use GPU in CPU-only Caffe 错误?
2018-03-21 vs与qt