利用C/C++编写程序以获取文件夹内所有子文件名,windows和Linux两个版本都有

该程序使用C++编写,能够分别在Windows和Linux环境下获取指定目录下的所有子文件名。通过#include <direct.h>和#include <unistd.h>等头文件实现不同系统的兼容性。代码中定义了getFiles函数,根据操作系统类型调用不同的文件搜索方法,将文件名存储在vector<string>中并返回。
摘要由CSDN通过智能技术生成
利用C/C++编写程序以获取文件夹内所有子文件名,以下程序参考网络上诸多博文:
头文件如下:
  1. #include <iostream>  
  2. #include <stdlib.h>  
  3. #include <stdio.h>  
  4. #include <string.h>  
  5. #ifdef linux  
  6. #include <unistd.h>  
  7. #include <dirent.h>  
  8. #endif  
  9. #ifdef WIN32  
  10. #include <direct.h>  
  11. #include <io.h>  
  12. #endif  
  13. using namespace std; 
  1. <pre name="code" class="cpp">/** 
  2.  * @function: 获取cate_dir目录下的所有文件名 
  3.  * @param: cate_dir - string类型 
  4.  * @result:vector<string>类型 
  5. */  
  6. vector<string> getFiles(string cate_dir)  
  7. {  
  8.     vector<string> files;//存放文件名  
  9.   
  10. #ifdef WIN32  
  11.     _finddata_t file;  
  12.     long
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值