如何使用C C 實現檔案的檢索 ?

2021-06-25 22:53:33 字數 750 閱讀 2472

//

//要求:1.列出乙個資料夾

//2.列出該資料夾下的子資料夾的名稱,檔案的名稱及大小。

#include

#include

#include

using namespace std;

//typedef struct _win32_find_data win32_find_data, *pwin32_find_data;

//遞迴遍歷指定資料夾下的所有資料夾和檔案

void diretorysearch(const char *dirpath)

else

//根據dircodetemp萬用字元查詢路徑

handle handle = findfirstfilea(dircodetemp, &lpfindfiledata);

if(handle == invalid_handle_value)

//如果輸的的是檔案,則列印名字和大小

if((lpfindfiledata.dwfileattributes & file_attribute_directory) == 0)

//如果輸的的是資料夾,則列印名字

else

//遍歷本路徑下的資料夾和檔案

while (findnextfilea(handle, &lpfindfiledata))

else }

//關閉檔案搜尋控制代碼

findclose(handle);

}int main()

C C 使用Select檢索MySQL中的資料

首先建立乙個表和插入多行資料,如下 create database demo use demo drop table if exists students create table students id int 11 not null auto increment,name char 20 not...

如何使用2000全文檢索

sqlserver2000 全文檢索 一 如何在sql中啟用 全文檢索功能 1 證全文檢索服務是否安裝 通過儲存過程fulltextserviceproperty 返回有關全文服務級別屬性的資訊 來驗證搜尋服務 全文元件 是否安裝。如selectfulltextserviceproperty isf...

python使用glob檢索檔案的操作

from glob import glob glob output 0a.w aaa 1b.w 1a.w 0b.w 返回乙個list 假設我們需要獲取當前資料夾下所有字尾名為 w 的檔案,from glob import glob glob w output 0a.w 1b.w 1a.w 0b.w ...