C++遍历文件夹及判断某一文件或目录是否存在

2024-02-06 05:32

本文主要是介绍C++遍历文件夹及判断某一文件或目录是否存在,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C++遍历文件夹的代码如下:                    

Cpp代码   收藏代码
  1. #include<iostream>     
  2. #include<string>     
  3. #include<io.h>    
  4. using namespace std;   
  5.   
  6. void   visit(string path,int layer)     
  7. {     
  8.         struct _finddata_t   filefind;     
  9.         string  curr=path+"\\*.*";     
  10.         int   done=0,i,handle;     
  11.         if((handle=_findfirst(curr.c_str(),&filefind))==-1)return;       
  12.         while(!(done=_findnext(handle,&filefind)))     
  13.         {         
  14.             printf("%s\n",filefind.name);      
  15.             if(!strcmp(filefind.name,"..")){  
  16.  continue;  
  17.             }  
  18.             for(i=0;i<layer;i++)cout<<"     ";                   
  19.             if((_A_SUBDIR==filefind.attrib)) //是目录  
  20.                 {             
  21.     printf("----------%s\n",filefind.name);      
  22.                   cout<<filefind.name<<"(dir)"<<endl;     
  23.                   curr=path+"\\"+filefind.name;     
  24.  }     
  25.            else//不是目录,是文件       
  26.               {     
  27.                         cout<<path+"\\"+filefind.name<<endl;    
  28.              }     
  29.         }             
  30.         _findclose(handle);                 
  31. }     
  32. int   main()     
  33. {             
  34.         string   path;   
  35.         cout<<"请输入目录"<<endl;     
  36.         cin>>path;  
  37.         visit(path,1);     
  38.         system("PAUSE");     
  39.         return   0;       
  40. }     

 



一、判断文件夹是否存在:
     1.用CreateDirectory(".//FileManege",NULL);如果文件夹FileManege不存在,则创建。
     2.或者if(_access(".//FileManege",0)==-1),表示FileManege不存在。
     3.或者BOOL PathIsDirectory(LPCTSTR pszPath);

二、判断文件是否存在:
     1.用if((file=fopen(".//FileManege//F//F.dat","rb"))==NULL)
         file=fopen(".//FileManege//F//F.dat","ab+"); // 先判断有无文件,没的话新建一个
     2.用if(_access(".//FileManege//F//F.dat",0)==-1),表示文件不存在。


       函数int _access( const char *path, int mode );可以判断文件或者文件夹的mode属性
       mode=00;//Existence only
       mode=02;//Write permission
       mode=04;//Read permission
       mode=06;//Read and write permission
       需要包含头文件<io.h>。





C/C++中判断某一文件或目录是否存在
1.C++很简单的一种办法:
#include  < iostream >
#include 
< fstream >
using   namespace  std;
#define  FILENAME "stat.dat"
int  main()
{
     fstream _file;
     _file.open(FILENAME,ios::
in );
     
if ( ! _file)
     {
         cout
<< FILENAME << " 没有被创建 " ;
      }
      
else
      {
          cout
<< FILENAME << " 已经存在 " ;
      }
      
return   0 ;
}

 

2.利用 c 语言的库的办法:

函数名: access 
功  能: 确定文件的访问权限 
用  法: int access(const char *filename, int amode); 
以前一直没用过这个函数,今天调试程序发现了这个函数,感觉挺好用,尤其是判断一个文件或文件夹是否存在的时候,用不着再find了,文件的话还可以检测读写权限,文件夹的话则只能判断是否存在,下面摘自MSDN:

int _access( const char *path, int mode );

Return Value

Each of these functions returns 0 if the file has the given mode. The function returns –1 if the named file does not exist or is not accessible in the given mode; in this case, errno is set as follows:

EACCES

Access denied: file’s permission setting does not allow specified access.

ENOENT

Filename or path not found.

Parameters

path

File or directory path

mode

Permission setting

Remarks

When used with files, the _access function determines whether the specified file exists and can be accessed as specified by the value of mode. When used with directories, _access determines only whether the specified directory exists; in Windows NT, all directories have read and write access.

mode Value            Checks File For 
00                              Existence only 
02                              Write permission 
04                              Read permission 
06                              Read and write permission

Example

/* ACCESS.C: This example uses _access to check the* file named "ACCESS.C" to see if it exists and if* writing is allowed.*/#include  <io.h> #include  <stdio.h> #include  <stdlib.h>void main( void ) {/* Check for existence */if( (_access( "ACCESS.C"0 )) != -1 ){printf( "File ACCESS.C exists " );/* Check for write permission */if( (_access( "ACCESS.C"2 )) != -1 )printf( "File ACCESS.C has write permission " );} }
Output
File ACCESS.C existsFile ACCESS.C has write permission

 

3.在windows平台下用API函数FindFirstFile(...):

(1)检查文件是否存在:

#define  _WIN32_WINNT 0x0400

#include 
" windows.h "

int
main(
int  argc,  char   * argv[])
{
  WIN32_FIND_DATA FindFileData;
  HANDLE hFind;

  printf (
" Target file is %s.  " , argv[ 1 ]);

  hFind 
=  FindFirstFile(argv[ 1 ],  & FindFileData);

  
if  (hFind  ==  INVALID_HANDLE_VALUE) {
    printf (
" Invalid File Handle. Get Last Error reports %d  " , GetLastError ());
  } 
else  {
    printf (
" The first file found is %s  " , FindFileData.cFileName);
    FindClose(hFind);
  }

  
return  ( 0 );
}

 

(2)检查某一目录是否存在:

 

 

/// 目录是否存在的检查:
bool   CheckFolderExist( const   string   & strPath)
{
    WIN32_FIND_DATA  wfd;
    
bool  rValue  =   false ;
    HANDLE hFind 
=  FindFirstFile(strPath.c_str(),  & wfd);
    
if  ((hFind  !=  INVALID_HANDLE_VALUE)  &&  (wfd.dwFileAttributes  &  FILE_ATTRIBUTE_DIRECTORY))
    {
        rValue 
=   true ;   
    }
    FindClose(hFind);
    
return  rValue;
}

4.使用boost的filesystem类库的exists函数

#include  < boost / filesystem / operations.hpp >
#include 
< boost / filesystem / path.hpp >
#include 
< boost / filesystem / convenience.hpp >

int  GetFilePath(std:: string   & strFilePath)
{
    
string  strPath;
    
int  nRes  =   0 ;

    
// 指定路径            
    strPath  =   " D:/myTest/Test1/Test2 " ;
    
namespace  fs  =  boost::filesystem;

    
// 路径的可移植
    fs::path full_path( fs::initial_path() );
    full_path 
=  fs::system_complete( fs::path(strPath, fs::native ) );
    
// 判断各级子目录是否存在,不存在则需要创建
     if  (  ! fs::exists( full_path ) )
    {
        
//  创建多层子目录
         bool  bRet  =  fs::create_directories(full_path);
        
if  ( false   ==  bRet)
        {
            
return   - 1 ;
        }

    }
    strFilePath 
=  full_path.native_directory_string();

    
return   0 ;
}


 


这篇关于C++遍历文件夹及判断某一文件或目录是否存在的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/683264

相关文章

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

poj 3259 uva 558 Wormholes(bellman最短路负权回路判断)

poj 3259: 题意:John的农场里n块地,m条路连接两块地,w个虫洞,虫洞是一条单向路,不但会把你传送到目的地,而且时间会倒退Ts。 任务是求你会不会在从某块地出发后又回来,看到了离开之前的自己。 判断树中是否存在负权回路就ok了。 bellman代码: #include<stdio.h>const int MaxN = 501;//农场数const int

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

【C++高阶】C++类型转换全攻略:深入理解并高效应用

📝个人主页🌹:Eternity._ ⏩收录专栏⏪:C++ “ 登神长阶 ” 🤡往期回顾🤡:C++ 智能指针 🌹🌹期待您的关注 🌹🌹 ❀C++的类型转换 📒1. C语言中的类型转换📚2. C++强制类型转换⛰️static_cast🌞reinterpret_cast⭐const_cast🍁dynamic_cast 📜3. C++强制类型转换的原因📝

zoj 1721 判断2条线段(完全)相交

给出起点,终点,与一些障碍线段。 求起点到终点的最短路。 枚举2点的距离,然后最短路。 2点可达条件:没有线段与这2点所构成的线段(完全)相交。 const double eps = 1e-8 ;double add(double x , double y){if(fabs(x+y) < eps*(fabs(x) + fabs(y))) return 0 ;return x + y ;

POJ1269 判断2条直线的位置关系

题目大意:给两个点能够确定一条直线,题目给出两条直线(由4个点确定),要求判断出这两条直线的关系:平行,同线,相交。如果相交还要求出交点坐标。 解题思路: 先判断两条直线p1p2, q1q2是否共线, 如果不是,再判断 直线 是否平行, 如果还不是, 则两直线相交。  判断共线:  p1p2q1 共线 且 p1p2q2 共线 ,共线用叉乘为 0  来判断,  判断 平行:  p1p