본문 바로가기

Programming

search folder or read folder

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

// 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 ();

'Programming' 카테고리의 다른 글

(초간단) 파일 쓰기 (연속쓰기)  (0) 2010.01.29
WinInet API  (0) 2010.01.27
프로세스 검색 코드  (0) 2010.01.26