CFileFind 썸네일형 리스트형 search folder or read folder // Get a list of files CFileFind finder; BOOL finding = finder.FindFile (myDirectory + CString ("\\*.") + extension); //iterate the results while (finding) { finding = finder.FindNextFile(); //get file path CString path = finder.GetFilePath()); //get file title CString title = finder.GetFileTitle() } //dont forget to close finder.Close (); 더보기 이전 1 다음