차근차근/C

하위디렉토리명 가져오기..

예쁜꽃이피었으면 2014. 9. 3. 17:18

http://cluster1.cafe.daum.net/_c21_/bbs_search_read?grpid=1HPMo&fldid=59U7&datanum=40&openArticle=true&docid=1HPMo59U74020100906182946


CFileFind 클래스를 뒤져보고 해결..쩝..

 

void CTestDirDlg::OnButton1()
{
// TODO: Add your control notification handler code here
CFileFind fFile;
::SetCurrentDirectory("d:\work");

fFile.FindFile();
while (fFile.FindNextFile() == TRUE) {

if (fFile.IsDirectory() == TRUE)

{

AfxMessageBox("Directory..!!, " + fFile.GetFileName());

}

    }
}


반응형

'차근차근 > C' 카테고리의 다른 글

Windows CE CFileFind  (0) 2014.09.04
상위폴더경로로 하위폴더 검색  (0) 2014.09.03
c삭제 명령어?  (0) 2014.09.03
[MFC] 현재 디렉토리 읽어오기  (0) 2014.09.03
[C/C++]폴더 검색 함수  (0) 2014.09.03