C/C++文件操作类实现

C++文件操作类的实现与应用

在C++编程中,文件操作是一项非常重要的任务。本文将介绍一个名为FileOperation的类,它提供了一系列用于文件和文件夹操作的方法,包括遍历文件夹、删除文件、获取指定文件、获取指定后缀的文件、复制文件、移动文件、重命名文件、检查文件是否存在以及获取文件大小等。

FileOperation类的设计

FileOperation类的设计目标是提供一个方便、易用的接口,用于处理文件和文件夹的各种操作。它包含了一个私有成员变量m_whiteList,用于存储白名单列表。

构造函数

FileOperation(const std::vector<std::string>& whiteList);

构造函数用于初始化FileOperation类的实例,接受一个白名单向量作为参数。

遍历文件夹

void traverseFolder(const std::string& folderPath);

该方法用于递归遍历指定文件夹内的所有文件和子文件夹,并输出文件路径。

删除文件

bool deleteFile(const std::string& filePath);

尝试删除指定路径的文件。如果文件在白名单中,则无法删除。

获取指定文件

std::string getSpecifiedFile(const std::string& folderPath, const std::string& fileName);

在给定的文件夹路径中搜索指定名称的文件,并返回其完整路径。如果未找到文件或文件夹无法打开,则返回空字符串。

获取指定后缀的文件

std::vector<std::string> getFilesWithSuffix(const std::string& folderPath, const std::string& suffix);

在给定的文件夹路径下,查找所有具有指定后缀的文件,并将它们的路径存储在字符串向量中返回。

复制文件

bool copyFile(const std::string& sourcePath, const std::string& destinationPath);

将指定源文件复制到目标路径下。

移动文件

bool moveFile(const std::string& sourcePath, const std::string& destinationPath);

将指定源文件移动到目标路径。

重命名文件

bool renameFile(const std::string& oldPath, const std::string& newName);

将指定路径下的文件重命名为新名称。

检查文件是否存在

bool fileExists(const std::string& filePath);

检查指定文件路径下的文件是否存在。

获取文件大小

long long getFileSize(const std::string& filePath);

根据给定的文件路径,获取文件的大小(以字节为单位)。

FileOperation类的使用

为了展示FileOperation类的使用,我们可以编写一个测试函数,例如:

void test()
{ std::vector<std::string> whiteList = { "file.cpp", "file.h" };FileOperation fileOp(whiteList);std::string folderPath = ".";// 遍历文件夹fileOp.traverseFolder(folderPath);// 删除文件示例std::string filePathToDelete = "delete.txt";fileOp.deleteFile(filePathToDelete);// 获取指定文件示例std::string specifiedFileName = "specificFile.txt";std::string specifiedFile = fileOp.getSpecifiedFile(folderPath, specifiedFileName);if (!specifiedFile.empty()) {std::cout << "Found specified file: " << specifiedFile << std::endl;} else {std::cout << "Specified file not found" << std::endl;}// 获取指定后缀文件示例std::string suffix = ".jpg";std::vector<std::string> filesWithSuffix = fileOp.getFilesWithSuffix(folderPath, suffix);for (const auto& file : filesWithSuffix) {std::cout << file << std::endl;}// 复制文件示例std::string sourceFile = "file.cpp";std::string destinationFile = "test.cpp";fileOp.copyFile(sourceFile, destinationFile);// 移动文件示例std::string sourceFileToMove = "abc";std::string destinationFileForMove = "../test.cpp";fileOp.moveFile(sourceFileToMove, destinationFileForMove);// 重命名文件示例std::string oldFilePath = "/yourFolderPath/oldName.txt";std::string newFileName = "newName.txt";fileOp.renameFile(oldFilePath, newFileName);// 检查文件是否存在示例std::string filePathToCheck = "file.cpp";if (fileOp.fileExists(filePathToCheck)) {std::cout << "File exists" << std::endl;} else {std::cout << "File does not exist" << std::endl;}// 获取文件大小示例std::string fileToGetSize = "file.cpp";long long fileSize = fileOp.getFileSize(fileToGetSize);if (fileSize >= 0) {std::cout << "File size: " << fileSize << " bytes" << std::endl;}
}

main函数中调用test函数即可进行测试。

通过使用FileOperation类,我们可以方便地进行文件和文件夹的操作,提高开发效率。

附上源码如下:

//@file.h
#include <iostream>
#include <string>
#include <vector>
#include <dirent.h>
#include <sys/stat.h>
#include <fstream>class FileOperation {
private:std::vector<std::string> m_whiteList;public:/*** @brief FileOperation 类的构造函数** 使用给定的白名单列表初始化 FileOperation 类的实例。** @param whiteList 包含白名单条目的字符串向量*/FileOperation(const std::vector<std::string>& whiteList);/*** @brief 遍历文件夹** 递归遍历指定文件夹内的所有文件和子文件夹,并输出文件路径。** @param folderPath 文件夹路径*/void traverseFolder(const std::string& folderPath);/*** @brief 删除文件** 尝试删除指定路径的文件。如果文件在白名单中,则无法删除。** @param filePath 文件路径** @return 如果文件成功删除,则返回 true;否则返回 false*/bool deleteFile(const std::string& filePath) ;/*** @brief 获取指定文件夹下的指定文件路径** 在给定的文件夹路径中搜索指定名称的文件,并返回其完整路径。* 如果未找到文件或文件夹无法打开,则返回空字符串。** @param folderPath 文件夹路径* @param fileName 文件名** @return 如果找到文件,则返回其完整路径;否则返回空字符串*/std::string getSpecifiedFile(const std::string& folderPath, const std::string& fileName);/*** @brief 获取指定文件夹下具有指定后缀的文件列表** 在给定的文件夹路径下,查找所有具有指定后缀的文件,并将它们的路径存储在字符串向量中返回。** @param folderPath 文件夹路径* @param suffix 文件后缀名** @return 包含指定后缀的文件路径的字符串向量*/std::vector<std::string> getFilesWithSuffix(const std::string& folderPath, const std::string& suffix) ;/*** @brief 复制文件** 将指定源文件复制到目标路径下。** @param sourcePath 源文件路径* @param destinationPath 目标文件路径** @return 如果复制成功,则返回 true;否则返回 false*/bool copyFile(const std::string& sourcePath, const std::string& destinationPath) ;/*** @brief 移动文件** 将指定源文件移动到目标路径。** @param sourcePath 源文件路径* @param destinationPath 目标路径** @return 如果文件移动成功,返回 true;否则返回 false*/bool moveFile(const std::string& sourcePath, const std::string& destinationPath) ;/*** @brief 重命名文件** 将指定路径下的文件重命名为新名称。** @param oldPath 旧文件路径* @param newName 新文件名(不包含路径)** @return 如果重命名成功,则返回true;否则返回false*/bool renameFile(const std::string& oldPath, const std::string& newName); /*** @brief 判断文件是否存在** 检查指定文件路径下的文件是否存在。** @param filePath 文件路径** @return 如果文件存在则返回 true,否则返回 false*/bool fileExists(const std::string& filePath);/*** @brief 获取文件大小** 根据给定的文件路径,获取文件的大小(以字节为单位)。** @param filePath 文件路径** @return 返回文件大小(以字节为单位),如果获取失败则返回-1*/long long getFileSize(const std::string& filePath);
};
//@file.cpp
#include "file.h"// 构造函数,用于初始化白名单
FileOperation:: FileOperation(const std::vector<std::string>& whiteList) {this->m_whiteList = whiteList;
}// 遍历文件夹
void FileOperation::traverseFolder(const std::string& folderPath) {DIR* dir;struct dirent* ent;if ((dir = opendir(folderPath.c_str()))!= NULL) {while ((ent = readdir(dir))!= NULL) {std::string filePath = folderPath + "/" + ent->d_name;struct stat fileStat;if (stat(filePath.c_str(), &fileStat) == 0) {if (S_ISDIR(fileStat.st_mode)) {if (std::string(ent->d_name)!= "." && std::string(ent->d_name)!= "..") {traverseFolder(filePath);}} else {std::cout << filePath << std::endl;}}}closedir(dir);} else {std::cerr << "Could not open directory: " << folderPath << std::endl;}
}// 删除文件
bool FileOperation::deleteFile(const std::string& filePath) {for(auto file : m_whiteList){if(file == filePath){std::cout << "File is in white list, cannot be deleted: " << filePath << std::endl;return false;}}if (remove(filePath.c_str()) == 0) {return true;} else {std::cerr << "Failed to delete file: " << filePath << std::endl;return false;}
}// 获取指定文件夹下的指定文件
std::string FileOperation::getSpecifiedFile(const std::string& folderPath, const std::string& fileName) {DIR* dir;struct dirent* ent;if ((dir = opendir(folderPath.c_str()))!= NULL) {while ((ent = readdir(dir))!= NULL) {std::string filePath = folderPath + "/" + ent->d_name;struct stat fileStat;if (stat(filePath.c_str(), &fileStat) == 0) {if (!S_ISDIR(fileStat.st_mode) && std::string(ent->d_name) == fileName) {return filePath;}}}closedir(dir);} else {std::cerr << "Could not open directory: " << folderPath << std::endl;}return "";
}// 获取指定后缀的文件
std::vector<std::string> FileOperation::getFilesWithSuffix(const std::string& folderPath, const std::string& suffix) {std::vector<std::string> result;DIR* dir;struct dirent* ent;if ((dir = opendir(folderPath.c_str()))!= NULL) {while ((ent = readdir(dir))!= NULL) {std::string filePath = folderPath + "/" + ent->d_name;struct stat fileStat;if (stat(filePath.c_str(), &fileStat) == 0) {if (!S_ISDIR(fileStat.st_mode)) {std::string fileSuffix = filePath.substr(filePath.find_last_of('.'));if (fileSuffix == suffix) {result.push_back(filePath);}}}}closedir(dir);} else {std::cerr << "Could not open directory: " << folderPath << std::endl;}return result;
}// 复制文件
bool FileOperation::copyFile(const std::string& sourcePath, const std::string& destinationPath) {std::ifstream source(sourcePath, std::ios::binary);std::ofstream destination(destinationPath, std::ios::binary);if (source && destination) {destination << source.rdbuf();source.close();destination.close();return true;} else {std::cerr << "Failed to copy file from " << sourcePath << " to " << destinationPath << std::endl;return false;}
}// 移动文件
bool FileOperation::moveFile(const std::string& sourcePath, const std::string& destinationPath) {if (std::rename(sourcePath.c_str(), destinationPath.c_str()) == 0) {return true;} else {std::perror("Error moving file");return false;}
}// 重命名文件
bool FileOperation::renameFile(const std::string& oldPath, const std::string& newName) {std::string folderPath = oldPath.substr(0, oldPath.find_last_of('/'));std::string newPath = folderPath + "/" + newName;if (rename(oldPath.c_str(), newPath.c_str()) == 0) {return true;} else {std::cerr << "Failed to rename file from " << oldPath << " to " << newPath << std::endl;return false;}
}// 检查文件是否存在
bool FileOperation::fileExists(const std::string& filePath) {struct stat buffer;return (stat(filePath.c_str(), &buffer) == 0);
}// 获取文件大小
long long FileOperation::getFileSize(const std::string& filePath) {struct stat fileStat;if (stat(filePath.c_str(), &fileStat) == 0) {return fileStat.st_size;} else {std::cerr << "Failed to get file size of " << filePath << std::endl;return -1;}
}void test()
{ std::vector<std::string> whiteList = { "file.cpp", "file.h" };FileOperation fileOp(whiteList);std::string folderPath = ".";// 遍历文件夹fileOp.traverseFolder(folderPath);// 删除文件示例std::string filePathToDelete = "delete.txt";fileOp.deleteFile(filePathToDelete);// 获取指定文件示例std::string specifiedFileName = "specificFile.txt";std::string specifiedFile = fileOp.getSpecifiedFile(folderPath, specifiedFileName);if (!specifiedFile.empty()) {std::cout << "Found specified file: " << specifiedFile << std::endl;} else {std::cout << "Specified file not found" << std::endl;}// 获取指定后缀文件示例std::string suffix = ".jpg";std::vector<std::string> filesWithSuffix = fileOp.getFilesWithSuffix(folderPath, suffix);for (const auto& file : filesWithSuffix) {std::cout << file << std::endl;}// 复制文件示例std::string sourceFile = "file.cpp";std::string destinationFile = "test.cpp";fileOp.copyFile(sourceFile, destinationFile);// 移动文件示例std::string sourceFileToMove = "abc";std::string destinationFileForMove = "../test.cpp";fileOp.moveFile(sourceFileToMove, destinationFileForMove);// // 重命名文件示例std::string oldFilePath = "/yourFolderPath/oldName.txt";std::string newFileName = "newName.txt";fileOp.renameFile(oldFilePath, newFileName);// 检查文件是否存在示例std::string filePathToCheck = "file.cpp";if (fileOp.fileExists(filePathToCheck)) {std::cout << "File exists" << std::endl;} else {std::cout << "File does not exist" << std::endl;}// 获取文件大小示例std::string fileToGetSize = "file.cpp";long long fileSize = fileOp.getFileSize(fileToGetSize);if (fileSize >= 0) {std::cout << "File size: " << fileSize << " bytes" << std::endl;}}int main() {test();
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/49515.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

微信小程序-CANVAS写入图片素材、文字等数据生成图片

微信小程序中&#xff0c;CANVAS写入图片素材、文字等数据生成图片&#xff0c;最终可将生成的 base64 格式图片保存至相册操作 Tips&#xff1a; 1、canvas 标签默认宽度 300px、高度 150px canvas 生成图片时&#xff0c;写入图片素材、文字等数据前&#xff0c;需要根据实…

叶再豪降龙精英课程总结

文章目录 1.思维认知1.1 稻盛和夫成功公式1.2 龙头主升模式1.3 龙头主升-两种路径1.4 股市新手的炒股思路1.5 龙头案例1.6 降龙心法 2.情绪周期2.1 情绪周期2.1 情绪演绎周期2.2 情绪的四个部分2.2.1 指数的情绪周期2.2.3 热点情绪周期2.2.4 热点情绪演绎周期2.2.5 大热点支线2…

1.Vue基础(@事件名+v-show+created+v-bind)

Vue基础 文章目录 Vue基础一.Vue简介1.定义&#xff1a;2.特点&#xff1a;3.建立vue程序步骤 二.Vue的常用指令1.v-text和v-html2.v-show和v-if显示和隐藏数据3.v-on和事件名触发事件4.v-bind设置元素属性5.created页面加载运行的代码块6.v-for7.v-model双向绑定 一.Vue简介 …

深入了解路由器工作原理:从零开始的简单讲解

简介 在现代网络中&#xff0c;路由器扮演着至关重要的角色。它不仅连接了不同的设备&#xff0c;还确保数据能够准确地传输到目的地。本文将带你深入探讨路由器的工作原理&#xff0c;帮助网络基础小白们理解这一重要设备的基本功能。 路由器的构成 路由器是一种具有多个输入…

鸿蒙上的“adb“即hdc常用命令

hdc&#xff08;HarmonyOS Device Connector&#xff09;是为开发人员提供的用于调试的命令行工具&#xff0c;通过该工具可以在windows/linux/mac系统上与真实设备进行交互。 环境准备 hdc工具通过HarmonyOS SDK获取&#xff0c;存放于SDK的toolchains目录下&#xff0c;首次…

纷享AI | AI技术在销售场景的应用与实践

AI高速发展的今天&#xff0c;各行业都经历着深刻变革。但机遇与挑战总相伴相生&#xff0c;各企业负责人事实上也正面临着如何有效利用AI以完成赋能销售业务的难题。 毋庸置疑&#xff0c;跟上技术潮流&#xff0c;通过落实AI在销售场景中的应用进而取得卓越赋能成果必然是行…

Android TabLayout的简单用法

TabLayout 注意这里添加tab&#xff0c;使用binding.tabLayout.newTab()进行创建 private fun initTabs() {val tab binding.tabLayout.newTab()tab.text "模板库"binding.tabLayout.addTab(tab)binding.tabLayout.addOnTabSelectedListener(object : TabLayout.On…

深度学习系列一

激活函数 sigmod 梯度消失问题&#xff1a; sigmoid函数的导数在输入值较大或较小时接近于0。在反向传播过程中&#xff0c;这些小梯度会相乘&#xff0c;导致深层网络的梯度变得非常小。结果是&#xff0c;深层网络的参数几乎不会更新&#xff0c;训练变得非常困难。这就是为…

Passing output of 3DCNN layer to LSTM layer

题意&#xff1a;将3DCNN&#xff08;三维卷积神经网络&#xff09;层的输出传递给LSTM&#xff08;长短期记忆网络&#xff09;层 问题背景&#xff1a; Whilst trying to learn Recurrent Neural Networks(RNNs) am trying to train an Automatic Lip Reading Model using 3…

2024年上半年主要游戏安全风险,该如何应对?

随着游戏行业的蓬勃发展&#xff0c;安全问题也日益成为行业关注的焦点。面对 2024 年上半 年的游戏安全风险挑战&#xff0c;游戏行业需要不断加强技术能力&#xff0c;完善安全策略&#xff0c;与各方共 同努力&#xff0c;打造一个更加安全、公平的游戏环境。 游戏安全解…

Saga模式在分布式事务中的应用

在分布式系统中&#xff0c;事务管理是一个复杂且关键的问题。传统的ACID事务模型在单体应用中表现良好&#xff0c;但在分布式环境中&#xff0c;由于网络延迟、服务故障等因素&#xff0c;实现强一致性的事务变得非常困难。Saga模式作为一种分布式事务解决方案&#xff0c;通…

前端程序员会演化出类TA岗位吗?

前端开发领域确实在不断演化&#xff0c;随着技术的进步和行业的需求变化&#xff0c;前端程序员的角色和职责也在拓展&#xff0c;这自然催生了一系列相关的专业岗位。以下是一些从前端开发领域分化出来的专业角色&#xff0c;我们可以称之为“类TA”&#xff08;Technical Ad…

BGP之选路MED

原理概述 当一台BGP路由器中存在多条去往同一目标网络的BGP路由时&#xff0c;BGP协议会对这些BGP路由的属性进行比较&#xff0c;以确定去往该目标网络的最优BGP路由。BGP路由属性的比较顺序为Preferred Value属性、Local Preference属性、路由生成方式、AS_Path属性、Origin属…

学习记录——day18 数据结构 树

树的存储 1、顺序存储 对于普通的二叉树&#xff0c;不适合存储普通的二叉树顶序存储&#xff0c;一般用于存储完全二叉树而言&#xff0c;如果使用顺序存储&#xff0c;会浪费大量的存储空间&#xff0c;因为需要给没有节点的位置留出空间&#xff0c;以便于后期的插入。 所以…

20分钟上手新版Skywalking 9.x APM监控系统

Skywalking https://skywalking.apache.org/ Skywalking是专为微服务、云原生和基于容器的&#xff08;Kubernetes&#xff09;架构设计的分布式系统性能监控工具。 Skywalking关键特性 ● 分布式跟踪 ○ 端到端分布式跟踪。服务拓扑分析、以服务为中心的可观察性和API仪表板。…

兼容浏览器,切换PC端显示PC端,切换H5端显示H5端

兼容浏览器&#xff0c;切换PC端显示PC端&#xff0c;切换H5端显示H5端 Uniapp vue3 Uview 项目 Vue3 Vite Ts ElementPlus PC端 &#xff08;在浏览器PC端&#xff0c;切换H5端兼容显示H5端页面&#xff09; 浏览器H5端 (在浏览器H5端&#xff0c;切换PC端兼容显示PC端…

CSS实现的扫光效果组件

theme: lilsnake 图片和内容如有侵权&#xff0c;及时与我联系~ 详细内容与注释&#xff1a; CSS实现的扫光效果组件 代码 技术栈与框架 Vue3 CSS 扫光效果的原理 扫光效果的原理就是从左到右无限循环的一个位移动画 实现方式 适配文字扫光效果的css .shark-box { …

Stable Diffusion基本原理通俗讲解

Stable Diffusion是一种基于深度学习的图像生成技术&#xff0c;它属于生成对抗网络&#xff08;GANs&#xff09;的一种。简单来说&#xff0c;Stable Diffusion通过训练一个生成器&#xff08;Generator&#xff09;和一个判别器&#xff08;Discriminator&#xff09;&#…

【linux】Shell脚本三剑客之sed命令的详细用法攻略

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全…

【OSS对象存储】Springboot集成阿里云OSS + 私有化部署Minio

【OSS对象存储】Springboot集成阿里云OSS 私有化部署Minio 一、摘要二、POM依赖三、配置文件四、表结构设计五、代码实现5.1 代码包结构5.2 API封装5.3 增删改查 六、扩展6.1 Minio配置https访问 一、摘要 掌握阿里云OSS、私有化部署Minio两种对象存储的使用方式运用工厂策略…