使用windows API函數擷取目錄下所有檔案名稱---目錄下檔案的掃描和處理

來源:互聯網
上載者:User

標籤:windows   api   擷取目錄下所有檔案名稱   

直接上代碼

// test_max.cpp : 定義控制台應用程式的進入點。//#include "stdafx.h"#include <windows.h>#include <Shlwapi.h>#include <iostream>#include <string>#include <vector>#pragma comment(lib,"shlwapi.lib")//注意放置的位置using namespace std;void findFile(string dir){WIN32_FIND_DATAA stFD ;//存放檔案資訊的結構體HANDLE h;string temp;temp=dir+"\\*";h=FindFirstFileA(temp.c_str(),&stFD);//構建目錄控制代碼while(FindNextFileA(h,&stFD))//提取目錄控制代碼對應目錄所包含的檔案{temp=dir+"\\"+stFD.cFileName;if(temp==dir+"\\..")//上一級路徑{continue;}else if(PathIsDirectoryA(temp.c_str()) )//包含子目錄{findFile(temp);//遞迴調用}else{cout<<stFD.cFileName<<endl;//列印檔案名}}return ;}int main(void){string dir;dir="F:\\datasets\\match圖庫";findFile(dir);system("pause");return 0;}
知道檔案名稱和路徑名之後可以進行自己想要的處理

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.