全盤搜尋指定的檔案 MFC

2021-08-14 10:05:15 字數 826 閱讀 8478

1.標頭檔案:

#include //此標頭檔案用來取自身的程式路徑,在此檔案中可以不要;

#include //這個是自己手動編寫的mfc裡可以用來控制台輸出的標頭檔案;

#include //多執行緒標頭檔案;

using namespace std;

2.標頭檔案的**如下:

#ifndef mycout

#define mycout

#include "stdafx.h"

#include #include #include #include using namespace std;

void initcout()//可以在自己程式中呼叫此函式,就可以實現控制台輸出;

#endif

3.在自己的button按鈕裡加入以下**

char buff[1024];

_getcwd(buff, sizeof(buff));

cout << buff << endl;

strcat_s(buff, "\\my.ini");

if (_access(buff, 0) == -1)

; char threadpath[10] = ;

for (char x = 'a'; x <= 'z'; x++)//搜尋多個碟符;

}} cout << "init執行完" << endl;

4.自定義的函式:

void th1(cstring a)

{ findfile(a);

cout << a << "執行完"<

全盤的檔案遍歷

初始化操作 m disk.resetcontent tchar szbuf 100 memset szbuf,0,100 dword len getlogicaldrivestrings sizeof szbuf sizeof tchar szbuf for tchar s szbuf s s tc...

MFC下開啟指定檔案

使用shellexecute可以操作指定的檔案。所在標頭檔案 vc include shellexecute函式原型及引數含義如下 hinstance shellexecute hwnd hwnd lpctstr lpverb lpctstr lpfile lpctstr lpparameters ...

python實現全盤掃瞄搜尋功能的方法

由使用者指定需要掃瞄的碟符或目錄,輸入需要查詢的檔案或者資料夾名稱 不包含中文名稱 encoding utf 8 import os.path import stat 用python編寫乙個從程式,實現全盤搜尋功能 1,www.cppcns.com使用者隨便輸入乙個目錄,從該目錄開始,逐層往下搜尋,...