예제
int Dialog::GetDirFileNum(CString FolderPath)
{
int count = 0;
CFileFind finder;
BOOL bworking = finder.FindFile(FolderPath + "/*.*");
while (bworking)
{
bworking = finder.FindNextFile();
if (finder.IsDots())
{
continue;
}
count++;
}
finder.Close();
return count;
}
'Development > MFC(Visual C++)' 카테고리의 다른 글
[MFC] 파일의 내용 중 부분만 수정하여 쓰기 (1) | 2016.06.29 |
---|---|
[MFC] 폴더의 하위 폴더까지의 지정한 확장자명 파일들 삭제 (0) | 2016.06.29 |
그냥 공부 (0) | 2016.06.28 |
(VC++) 각종 에러 모음 (0) | 2016.06.24 |
[MFC] ShellExecute 파일 실행, 명령 끝날 때까지 대기 (1) | 2016.06.24 |