- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
// CFileFind ff;
// ...
bool IsNext = ff.FindNextFile();
bool IsCurr = true;
while (IsCurr)
{
if(!ff.IsDirectory() && !ff.IsDots())
{
pTplList->InsertString(-1, ff.GetFileName());
}
if(IsNext)
IsNext = ff.FindNextFile();
else
IsCurr = false;
};