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();
}