Click here to Skip to main content
15,921,959 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to find the number of files in a folder Pin
Deepu Antony18-Sep-08 1:31
Deepu Antony18-Sep-08 1:31 
AnswerRe: How to find the number of files in a folder Pin
Hamid_RT18-Sep-08 1:50
Hamid_RT18-Sep-08 1:50 
GeneralRe: How to find the number of files in a folder Pin
Deepu Antony18-Sep-08 2:04
Deepu Antony18-Sep-08 2:04 
GeneralRe: How to find the number of files in a folder Pin
Hamid_RT18-Sep-08 2:07
Hamid_RT18-Sep-08 2:07 
GeneralRe: How to find the number of files in a folder Pin
Deepu Antony18-Sep-08 3:15
Deepu Antony18-Sep-08 3:15 
GeneralRe: How to find the number of files in a folder Pin
David Crow18-Sep-08 3:35
David Crow18-Sep-08 3:35 
GeneralRe: How to find the number of files in a folder Pin
Deepu Antony18-Sep-08 4:42
Deepu Antony18-Sep-08 4:42 
GeneralRe: How to find the number of files in a folder Pin
David Crow18-Sep-08 5:18
David Crow18-Sep-08 5:18 
If you are only wanting to count files, then you must exclude those that are directories. If you are wanting to count everything except the current and parent directories, then you must exclude those directories whose name begins with a dot, like:

while (bWorking)
{
    bWorking = finder.FindNextFile();
     
    if (! finder.IsDots())
        NoOfFiles++;
}


"Love people and use things, not love things and use people." - Unknown

"The brick walls are there for a reason...to stop the people who don't want it badly enough." - Randy Pausch


GeneralRe: How to find the number of files in a folder Pin
Joe Woodbury18-Sep-08 8:43
professionalJoe Woodbury18-Sep-08 8:43 
GeneralRe: How to find the number of files in a folder Pin
David Crow18-Sep-08 8:56
David Crow18-Sep-08 8:56 
GeneralRe: How to find the number of files in a folder Pin
Joe Woodbury18-Sep-08 10:38
professionalJoe Woodbury18-Sep-08 10:38 
AnswerRe: How to find the number of files in a folder Pin
Michael Schubert18-Sep-08 1:52
Michael Schubert18-Sep-08 1:52 
QuestionBitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
JuriB18-Sep-08 1:27
JuriB18-Sep-08 1:27 
QuestionRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
Mark Salsbery18-Sep-08 4:01
Mark Salsbery18-Sep-08 4:01 
AnswerRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
JuriB18-Sep-08 4:23
JuriB18-Sep-08 4:23 
QuestionRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
Mark Salsbery18-Sep-08 4:44
Mark Salsbery18-Sep-08 4:44 
AnswerRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) [modified] Pin
JuriB18-Sep-08 5:18
JuriB18-Sep-08 5:18 
GeneralRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
Mark Salsbery18-Sep-08 5:43
Mark Salsbery18-Sep-08 5:43 
GeneralRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
JuriB18-Sep-08 23:54
JuriB18-Sep-08 23:54 
GeneralRe: Bitmap drawn via BitBlt not visible over Remote Desktop (WinXP) Pin
Mark Salsbery19-Sep-08 5:21
Mark Salsbery19-Sep-08 5:21 
QuestionCEGUI Pin
T.RATHA KRISHNAN18-Sep-08 0:32
T.RATHA KRISHNAN18-Sep-08 0:32 
AnswerRe: CEGUI Pin
Hamid_RT18-Sep-08 1:58
Hamid_RT18-Sep-08 1:58 
Questionunresolved external symbol error in VS 2008 (vc9) Pin
MKC00218-Sep-08 0:21
MKC00218-Sep-08 0:21 
AnswerRe: unresolved external symbol error in VS 2008 (vc9) Pin
KarstenK18-Sep-08 2:09
mveKarstenK18-Sep-08 2:09 
GeneralRe: unresolved external symbol error in VS 2008 (vc9) Pin
MKC00218-Sep-08 3:45
MKC00218-Sep-08 3:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.