- 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;
};
defecate-plusplus 16.11.2011 19:35 # 0
Sulik78 16.11.2011 21:09 # 0
guest 22.11.2011 16:54 # 0
hayhay 22.11.2011 16:56 # 0
guest 22.11.2011 16:58 # 0
hayhay 22.11.2011 17:00 # 0
class CFileFind : public CObject
Да и вообще, не принципиально.
guest 22.11.2011 17:03 # −1
defecate-plusplus 22.11.2011 17:19 # 0
guest 22.11.2011 17:23 # 0
defecate-plusplus 22.11.2011 17:35 # +3
111111 24.08.2021 20:37 # 0