Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.jpg ファイルは見つかりますが、どうすれば .jpg、.bmp、.png .... ファイルを見つけることができますか?
マスク
LPWSTR mask = stoL(path + "*.(jpg)");
ハンドラの初期化
HANDLE hf = FindFirstFile(mask, &FindFileData);
文字列から LPWSTR
LPWSTR stoL(string s) { return CA2T(s.c_str()); }