91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++利用 _findfirst與_findnext查找文件的方法

發布時間:2020-08-22 12:15:43 來源:腳本之家 閱讀:364 作者:ranjiewen 欄目:編程語言

C++ 文件查找

在C++中我們要如何查找文件呢?我們需要一個結構體和幾個大家可能不太熟悉的函數。這些函數和結構體在的頭文件中,結構體為struct _finddata_t ,函數為_findfirst、_findnext和_fineclose。具體如何使用,下面來一起看看吧

_findfirst與_findnext查找文件

一、這兩個函數均在io.h里面。

二、首先了解一下一個文件結構體:

struct _finddata_t {
 unsigned attrib;
 time_t  time_create; 
 time_t  time_access; 
 time_t  time_write;
 _fsize_t size;
 char  name[260];
};

time_t,其實就是long

而_fsize_t,就是unsigned long

現在來解釋一下結構體的數據成員吧。

attrib,就是所查找文件的屬性:_A_ARCH(存檔)、_A_HIDDEN(隱藏)、_A_NORMAL(正常)、_A_RDONLY(只讀)、 _A_SUBDIR(文件夾)、_A_SYSTEM(系統)。

time_create、time_access和time_write分別是創建文件的時間、最后一次訪問文件的時間和文件最后被修改的時間。

size:文件大小

name:文件名。

三、用 _findfirst 和 _findnext 查找文件

1、_findfirst函數:long _findfirst(const char *, struct _finddata_t *);

第一個參數為文件名,可以用"*.*"來查找所有文件,也可以用"*.cpp"來查找.cpp文件。第二個參數是_finddata_t結構體指針。若查找成功,返回文件句柄,若失敗,返回-1。

2、_findnext函數:int _findnext(long, struct _finddata_t *);

第一個參數為文件句柄,第二個參數同樣為_finddata_t結構體指針。若查找成功,返回0,失敗返回-1。

3、_findclose()函數:int _findclose(long);

只有一個參數,文件句柄。若關閉成功返回0,失敗返回-1。

#include <io.h>
#include <iostream>
#include <fstream>
using namespace std;

bool transfer(string fileName, int exeNum );
void dfsFolder(string folderPath, ofstream &fout);

int main()
{
  _finddata_t file;
  int k;
  long HANDLE;
  k = HANDLE = _findfirst("*.*", &file);
  while (k != -1)
  {
    cout << file.name << endl;
    k = _findnext(HANDLE, &file);
  }
  _findclose(HANDLE);

  transfer("C:\\Windows\\*.exe", 0);
  ofstream o_fstream;

  dfsFolder("E:\\\WHU\\Study", o_fstream);


  return 0;
}

//_findfirst 函數返回的是匹配到文件的句柄,數據類型為long。
//遍歷過程可以指定文件類型,這通過FileName的賦值來實現,例如要遍歷C : \WINDOWS下的所有.exe文件

bool transfer(string fileName , int exeNum)
{
  _finddata_t fileInfo;
  long handle = _findfirst(fileName.c_str(), &fileInfo);

  if (handle == -1L)
  {
    cerr << "failed to transfer files" << endl;
    return false;
  }

  do
  {
    exeNum++;
    cout << fileInfo.name << endl;
  } while (_findnext(handle, &fileInfo) == 0);
  cout << " .exe files' number: " << exeNum << endl;

  return true;
}

//遍歷文件夾及其子文件夾下所有文件。操作系統中文件夾目錄是樹狀結構,使用深度搜索策略遍歷所有文件。用到_A_SUBDIR屬性


//在判斷有無子目錄的if分支中,由于系統在進入一個子目錄時,匹配到的頭兩個文件(夾)是"."(當前目錄),".."(上一層目錄)。
//需要忽略掉這兩種情況。當需要對遍歷到的文件做處理時,在else分支中添加相應的代碼就好

void dfsFolder(string folderPath, ofstream &fout)
{
  _finddata_t FileInfo;
  string strfind = folderPath + "\\*";
  long Handle = _findfirst(strfind.c_str(), &FileInfo);

  if (Handle == -1L)
  {
    cerr << "can not match the folder path" << endl;
    exit(-1);
  }
  do{
    //判斷是否有子目錄 
    if (FileInfo.attrib & _A_SUBDIR)
    {
      //這個語句很重要 
      if ((strcmp(FileInfo.name, ".") != 0) && (strcmp(FileInfo.name, "..") != 0))
      {
        string newPath = folderPath + "\\" + FileInfo.name;
        dfsFolder(newPath, fout);
      }
    }
    else
    {
      fout<<folderPath.c_str() << "\\" << FileInfo.name << " ";
      cout << folderPath.c_str() << "\\" << FileInfo.name << endl;
    }
  } while (_findnext(Handle, &FileInfo) == 0);

  _findclose(Handle);
  fout.close();
}


//#include <iostream>  
//#include <string>  
//#include <io.h>  
//using namespace std;
//
//int main()
//{
//  _finddata_t file;
//  long longf;
//  string tempName;
//  //_findfirst返回的是long型; long __cdecl _findfirst(const char *, struct _finddata_t *)  
//  if ((longf = _findfirst("E:\\WHU\\Study\\*.*", &file)) == -1l)
//  {
//    cout << "文件沒有找到!\n";
//    return 0;
//  }
//  do
//  {
//    cout << "文件列表:\n";
//    tempName = file.name;
//    if (tempName[0] == '.')
//      continue;
//    cout << file.name<<endl;
//
//    if (file.attrib == _A_NORMAL)
//    {
//      cout << " 普通文件 ";
//    }
//    else if (file.attrib == _A_RDONLY)
//    {
//      cout << " 只讀文件 ";
//    }
//    else if (file.attrib == _A_HIDDEN)
//    {
//      cout << " 隱藏文件 ";
//    }
//    else if (file.attrib == _A_SYSTEM)
//    {
//      cout << " 系統文件 ";
//    }
//    else if (file.attrib == _A_SUBDIR)
//    {
//      cout << " 子目錄 ";
//    }
//    else
//    {
//      cout << " 存檔文件 ";
//    }
//    cout << endl;
//  } while (_findnext(longf, &file) == 0);//int __cdecl _findnext(long, struct _finddata_t *);如果找到下個文件的名字成功的話就返回0,否則返回-1  
//
//  _findclose(longf);
//
//  return 0;
//}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台湾省| 大埔区| 博野县| 鹤峰县| 皮山县| 杭锦旗| 琼中| 苗栗县| 白水县| 安岳县| 珠海市| 莲花县| 莎车县| 莱芜市| 深泽县| 察隅县| 清流县| 凉山| 龙游县| 什邡市| 都兰县| 南雄市| 习水县| 渭南市| 曲松县| 加查县| 保亭| 白沙| 绍兴县| 博野县| 广安市| 中江县| 天全县| 崇阳县| SHOW| 自贡市| 汕头市| 七台河市| 繁峙县| 长汀县| 鄯善县|