当前位置:   article > 正文

QT创建文件夹 删除文件或者文件夹_qt 创建文件夹

qt 创建文件夹

QT 当文件夹不存在时 创建文件夹
QDir dir(QDir::currentPath()); //初始化dir为当前目录
if (!dir.exists(“D:/CNCData/”)) //如果Images文件夹不存在
{
dir.mkdir(“D:/CNCData/”); //创建文件夹(名为Images)
}

QT删除文件或者文件夹
bool DeleteFileOrFolder(const QString &strPath)//要删除的文件夹或文件的路径
{
if (strPath.isEmpty() || !QDir().exists(strPath))//是否传入了空的路径||路径是否存在
return false;

	QFileInfo FileInfo(strPath);

	if (FileInfo.isFile())//如果是文件
	    QFile::remove(strPath);
else if (FileInfo.isDir())//如果是文件夹
	{
	    QDir qDir(strPath);
	    qDir.removeRecursively();
	}
return true;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/652736
推荐阅读
相关标签
  

闽ICP备14008679号