QFile 使用详解

QFile 是 Qt 框架中用于文件操作的类,提供了丰富的功能来处理文件的读写、复制、删除、重命名等操作。以下是一些常见的 QFile 操作示例,包括打开文件、读取文件、写入文件、复制文件、删除文件等。

QFile 提供了丰富的文件操作功能,包括打开、读取、写入、复制、删除、重命名和获取文件信息等。通过这些操作,开发者可以方便地处理文件,满足各种应用需求。

++转载请附上文章出处与本文链接。++

QFile 使用详解目录

[1 写文件](#1 写文件)

[2 读文件](#2 读文件)

[3 追加内容](#3 追加内容)

[4 复制文件](#4 复制文件)

[5 删除文件](#5 删除文件)

[6 重命名文件](#6 重命名文件)

[7 检查文件](#7 检查文件)

[8 获取文件信息](#8 获取文件信息)

9选择文件

[10 专栏文章](#10 专栏文章)


1 写文件

可以使用 QFile 将数据写入文件。

cpp 复制代码
void QFileTest::writeFileExample()
{
	QFile file("output.txt");
	if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
		qDebug() << "Cannot open file for writing:" << file.errorString();
		return;
	}

	// 写入内容
	QTextStream out(&file);
	out << "Hello, World!" << endl;
	out << "This is a test file." << endl;

	file.close(); // 关闭文件
}

2 读文件

可以使用 QFile 获取数据文件。

cpp 复制代码
void QFileTest::openFileExample()
{
	QFile file("example.txt");
	if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
	{
		qDebug() << "Cannot open file for reading:" << file.errorString();
		return;
	}

	// 读取文件内容
	QTextStream in(&file);
	while (!in.atEnd())
	{
		QString line = in.readLine();
		qDebug() << line;
	}

	file.close(); // 关闭文件
}

3 追加内容

可以将数据追加到现有文件的末尾。

cpp 复制代码
// 打开文件以进行追加
void QFileTest::appendToFileExample()
{
	QFile file("output.txt");
	if (!file.open(QIODevice::Append | QIODevice::Text))
	{
		qDebug() << "Cannot open file for appending:" << file.errorString();
		return;
	}

	// 追加内容
	QTextStream out(&file);
	out << "Appending this line to the file." << endl;

	file.close(); // 关闭文件
}

4 复制文件

使用 QFile::copy() 方法可以复制文件

cpp 复制代码
void QFileTest::copyFileExample()
{
	QString sourceFile = "output.txt";
	QString destFile = "copy_of_output.txt";

	if (QFile::copy(sourceFile, destFile))
	{
		qDebug() << "File copied successfully.";
	}
	else {
		qDebug() << "Failed to copy file:";//<< QFile::errorString();
	}
}

5 删除文件

使用 QFile::remove() 方法可以删除文件。

cpp 复制代码
void QFileTest::deleteFileExample()
{
	QFile file("output.txt");

	if (file.remove())
	{
		qDebug() << "File deleted successfully.";
	}
	else {
		qDebug() << "Failed to delete file:" << file.errorString();
	}
}

6 重命名文件

使用 QFile::rename() 方法可以重命名文件。

cpp 复制代码
void QFileTest::renameFileExample()
{
	QString oldName = "copy_of_output.txt";
	QString newName = "renamed_output.txt";

	if (QFile::rename(oldName, newName))
	{
		qDebug() << "File renamed successfully.";
	}
	else {
		qDebug() << "Failed to rename file:";// << QFile::errorString();
	}
}

7 检查文件

可以使用 QFile::exists() 方法检查文件是否存在。

cpp 复制代码
void QFileTest::checkFileExistsExample()
{
	QString fileName = "output.txt";

	if (QFile::exists(fileName))
	{
		qDebug() << "File exists.";
	}
	else {
		qDebug() << "File does not exist.";
	}
}

8 获取文件信息

使用 QFileInfo 类可以获取文件的详细信息。

cpp 复制代码
void QFileTest::fileInfoExample()
{
	QFile file("output.txt");
	QFileInfo fileInfo(file);

	if (fileInfo.exists())
	{
		qDebug() << "File Name:" << fileInfo.fileName();
		qDebug() << "File Size:" << fileInfo.size() << "bytes";
		qDebug() << "File Path:" << fileInfo.absoluteFilePath();
		qDebug() << "Last Modified:" << fileInfo.lastModified();
	}
	else {
		qDebug() << "File does not exist.";
	}
}

9 文件选择

cpp 复制代码
QString folder = QFileDialog::getExistingDirectory(this, "选择文件夹", QString(),
	QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
if (!folder.isEmpty())
{
	qDebug() << folder;
}
else
{
	return;
}

//选择文件 QFileDialog::getOpenFileName() 方法

10 专栏文章

QT基本类使用详解系列文章包括以下内容:

QUUID 使用详解-CSDN博客

QDateTime 使用详解-CSDN博客

QSettings 使用详解_qt qsettings用法-CSDN博客

相关推荐
Mr.Q2 小时前
OpenCV和Qt坐标系不一致问题
qt·opencv
重生之我是数学王子5 小时前
QT基础 编码问题 定时器 事件 绘图事件 keyPressEvent QT5.12.3环境 C++实现
开发语言·c++·qt
----云烟----14 小时前
QT中QString类的各种使用
开发语言·qt
「QT(C++)开发工程师」20 小时前
【qt版本概述】
开发语言·qt
一路冰雨1 天前
Qt打开文件对话框选择文件之后弹出两次
开发语言·qt
老赵的博客1 天前
QT 自定义界面布局要诀
开发语言·qt
码码哈哈0.01 天前
VSCode 2022 离线安装插件QT VSTOOl报错此扩展不能安装在任何当前安装的产品上。
ide·vscode·qt
feiyangqingyun1 天前
Qt/C++离线地图的加载和交互/可以离线使用/百度和天地图离线/支持手机上运行
c++·qt·qt天地图·qt离线地图·qt地图导航
gz94562 天前
windows下,用CMake编译qt项目,出现错误By not providing “FindQt5.cmake“...
开发语言·qt
「QT(C++)开发工程师」2 天前
Ubuntu 26.04 LTS 大升级:Qt 6 成为未来新引擎
qt