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

相关文章

Windows下C++使用SQLitede的操作过程

《Windows下C++使用SQLitede的操作过程》本文介绍了Windows下C++使用SQLite的安装配置、CppSQLite库封装优势、核心功能(如数据库连接、事务管理)、跨平台支持及性能优... 目录Windows下C++使用SQLite1、安装2、代码示例CppSQLite:C++轻松操作SQ

C++中RAII资源获取即初始化

《C++中RAII资源获取即初始化》RAII通过构造/析构自动管理资源生命周期,确保安全释放,本文就来介绍一下C++中的RAII技术及其应用,具有一定的参考价值,感兴趣的可以了解一下... 目录一、核心原理与机制二、标准库中的RAII实现三、自定义RAII类设计原则四、常见应用场景1. 内存管理2. 文件操

C++中零拷贝的多种实现方式

《C++中零拷贝的多种实现方式》本文主要介绍了C++中零拷贝的实现示例,旨在在减少数据在内存中的不必要复制,从而提高程序性能、降低内存使用并减少CPU消耗,零拷贝技术通过多种方式实现,下面就来了解一下... 目录一、C++中零拷贝技术的核心概念二、std::string_view 简介三、std::stri

C++高效内存池实现减少动态分配开销的解决方案

《C++高效内存池实现减少动态分配开销的解决方案》C++动态内存分配存在系统调用开销、碎片化和锁竞争等性能问题,内存池通过预分配、分块管理和缓存复用解决这些问题,下面就来了解一下... 目录一、C++内存分配的性能挑战二、内存池技术的核心原理三、主流内存池实现:TCMalloc与Jemalloc1. TCM

苹果macOS 26 Tahoe主题功能大升级:可定制图标/高亮文本/文件夹颜色

《苹果macOS26Tahoe主题功能大升级:可定制图标/高亮文本/文件夹颜色》在整体系统设计方面,macOS26采用了全新的玻璃质感视觉风格,应用于Dock栏、应用图标以及桌面小部件等多个界面... 科技媒体 MACRumors 昨日(6 月 13 日)发布博文,报道称在 macOS 26 Tahoe 中

Python pip下载包及所有依赖到指定文件夹的步骤说明

《Pythonpip下载包及所有依赖到指定文件夹的步骤说明》为了方便开发和部署,我们常常需要将Python项目所依赖的第三方包导出到本地文件夹中,:本文主要介绍Pythonpip下载包及所有依... 目录步骤说明命令格式示例参数说明离线安装方法注意事项总结要使用pip下载包及其所有依赖到指定文件夹,请按照以

python判断文件是否存在常用的几种方式

《python判断文件是否存在常用的几种方式》在Python中我们在读写文件之前,首先要做的事情就是判断文件是否存在,否则很容易发生错误的情况,:本文主要介绍python判断文件是否存在常用的几种... 目录1. 使用 os.path.exists()2. 使用 os.path.isfile()3. 使用

C++ 函数 strftime 和时间格式示例详解

《C++函数strftime和时间格式示例详解》strftime是C/C++标准库中用于格式化日期和时间的函数,定义在ctime头文件中,它将tm结构体中的时间信息转换为指定格式的字符串,是处理... 目录C++ 函数 strftipythonme 详解一、函数原型二、功能描述三、格式字符串说明四、返回值五

MySQL存储过程之循环遍历查询的结果集详解

《MySQL存储过程之循环遍历查询的结果集详解》:本文主要介绍MySQL存储过程之循环遍历查询的结果集,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录前言1. 表结构2. 存储过程3. 关于存储过程的SQL补充总结前言近来碰到这样一个问题:在生产上导入的数据发现

C++作用域和标识符查找规则详解

《C++作用域和标识符查找规则详解》在C++中,作用域(Scope)和标识符查找(IdentifierLookup)是理解代码行为的重要概念,本文将详细介绍这些规则,并通过实例来说明它们的工作原理,需... 目录作用域标识符查找规则1. 普通查找(Ordinary Lookup)2. 限定查找(Qualif