Click here to Skip to main content
Click here to Skip to main content

SADirRead - directory and file list class

By , 2 Mar 2003
 

Introduction

CSADirRead is a class that will generate a list of files and folders contained in a folder of your choice.

Usage

First, declare a CSADirRead object

#include "SADirRead.h"

...

CSADirRead dr;

First, we build our list of folders to scan.

dr.ClearDirs();         // start clean
dr.GetDirs("c:\\temp", true); // get all folders under c:\temp

// dump the directory list to the debug trace window:

// get the dir array
CSADirRead::SADirVector &dirs = dr.Dirs();

// loop over it
for (CSADirRead::SADirVector::iterator dit = dirs.begin(); 
     dit!=dirs.end(); dit++)
{
    TRACE("%s\n", (*dit).m_sName);
}

Now that the object knows which directories to scan, tell it to scan for files:

dr.ClearFiles();        // start clean

dr.GetFiles("*.jpg");   // get all *.JPG files in c:\temp and below

// get the file array
CSADirRead::SAFileVector &files = dr.Files();   

// dump it...
for (CSADirRead::SAFileVector::iterator fit = files.begin(); 
     fit!=files.end(); fit++)
{
    TRACE("%s\n", (*fit).m_sName);
}

Because you can access and modify the folder list before scanning for files, you can manually add folders to (or remove folders from) the folder list. Likewise, you can call GetDirs() multiple times to build up the folder list before scanning for files, like this:

dr.ClearDirs();                   // start clean
dr.GetDirs("c:\\temp", true);     // get all folders under c:\temp, recursively
dr.GetDirs("c:\\windows", false); // look in c:\windows. but don't recurse 
                                  // to sub-folders

dr.ClearFiles();
dr.GetFiles("*.JPG"); // gets files from all of the above folders

Sorting the results

After building the file list, you can sort the files using CSADirRead::SortFiles. CSADirRead has three built-in sorting methods - alphabetic, date and size - and can sort in ascending or descending order.

Get a list of subfolders in c:\windows

CSADirRead dr;
dr.GetDirs("c:\\windows", false);
dr.GetFiles("*.*", false, true);
 
// get the file array
CSADirRead::SAFileVector &files = dr.Files();   

Now, files will have a list of subfolder of C:\Windows (no files included, just the folders)

History

  • 20 Jan 2002 - updated download
  • 24 May 2002 - updated download
  • 3 March 2003 - new revision.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chris Losinger
Software Developer
United States United States
Member
Chris Losinger is the president of Smaller Animals Software, Inc..

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralExcellant JobmemberCharlie Curtis29 Oct '08 - 11:03 
GeneralRe: Excellant JobmemberChris Losinger29 Oct '08 - 11:29 
GeneralRe: Excellant JobmemberCharlie Curtis29 Oct '08 - 11:37 
QuestionCan I have a C# version of this application over .NET 2.0membernitinr70822 Aug '07 - 0:31 
QuestionBuggy Code?memberEScout2091 Feb '07 - 4:37 
AnswerRe: Buggy Code?memberChris Losinger1 Feb '07 - 4:48 
GeneralRe: Buggy Code?memberEScout2091 Feb '07 - 5:28 
GeneralRe: Buggy Code?memberChris Losinger1 Feb '07 - 6:17 
Generalworkin with simple Win32 appmemberMATRIX-11 Jan '07 - 2:41 
HI chris,
thnx for such a gr8 class. well i hav to use it in a simple win32 application without any MFC. The system(win2k,9x,XP), where my application will be deployed, doesnt hav any MFC dll installed. As ur class uses CString which is MFC class, will it work in my scenario. plz help me in this regard.
hye plz reply soon as possible...
thnx
GeneralRe: workin with simple Win32 appmemberChris Losinger11 Jan '07 - 2:50 
GeneralRe: workin with simple Win32 appmemberMATRIX-12 Jan '07 - 2:03 
Questionerror LNK2001: unresolved external symbolmemberMukund - - Kumar25 May '06 - 1:58 
AnswerRe: error LNK2001: unresolved external symbolmemberChris Losinger25 May '06 - 2:23 
GeneralRe: error LNK2001: unresolved external symbolmemberMukund - - Kumar25 May '06 - 2:29 
GeneralRe: error LNK2001: unresolved external symbolmemberChris Losinger25 May '06 - 2:34 
Questionunicode file name and directory name?memberdungbkhn20 May '06 - 22:42 
Generalformat file sizememberRoger658 Mar '06 - 3:35 
GeneralReturn relative pathmemberovolok6 Apr '04 - 0:06 
GeneralRe: Return relative pathmemberChris Losinger6 Apr '04 - 2:10 
Generalproblems with integratingmembercryptic_silences5 Apr '04 - 18:22 
GeneralRe: problems with integratingmembercryptic_silences5 Apr '04 - 20:08 
GeneralRe: problems with integratingmemberbart13220 Jan '06 - 1:13 
GeneralNewbie: How to integrate Classmembercaribuni15 Jan '04 - 5:28 
GeneralRe: Newbie: How to integrate ClassmemberChris Losinger15 Jan '04 - 6:10 
GeneralRe: Newbie: How to integrate Classmembercaribuni15 Jan '04 - 6:30 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 2 Mar 2003
Article Copyright 2001 by Chris Losinger
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid