Click here to Skip to main content
15,867,568 members
Articles / Mobile Apps / Windows Mobile

Directory file listing utility

Rate me:
Please Sign up or sign in to vote.
3.28/5 (21 votes)
13 Jun 2012CPOL3 min read 98.9K   3.7K   39   47
An article about methods to recursively list all files in a given directory.

Image 1

Introduction

I've come across countless situations where routinely used utilitarian functions are simply not available, and coders simply have to write and rewrite them many times over. This is my first article in a series of articles which will try to provide a collection of routinely used functions with example applications on how to use them, in the hope that they will be as useful to the many developers out there as it has been to me.

One such function is to obtain a list of all files (their absolute paths) given a directory to start with, with options to search recursively into sub-directories or just to output the files present directly under the given directory.

I've found this to be extremely useful in many projects which required going through each file for some reason or the other.

Background

This function was developed many years ago when I stumbled upon a barrage of projects that required reading into every file in a given directory, and also provide progress information in real time, e.g., which file is being currently processed, total number of files, and number of files already processed. Since then, I've probably used this function in a few dozen projects.

Using the Code

Follow these simple steps to use the code in your project:

  1. Add the files Util.h and Util.cpp into your Visual Studio C++ project (or any other kind of project, I have never used the code on anything other than Visual Studio C++ projects, so any input on using it on other C++ projects is appreciated).
  2. Add the line #include "Util.h" in the top section of the *.cpp files you intend to use this function in.
  3. Declare a vector of _tstring's: vector <_tstring> vecstrFileList;.
  4. Call the static function "GetFileList()" with the required parameters.
  5. The vector will now have all the file paths found in the directory specified, each element of the vector being a string representing the absolute path of a file. Note that you must explicitly clear the vector before reusing it, unless you want the function to append to the vector. The function will also work on network drive directory paths.
  6. Take a look at the "Get file list" button event handler function in the source code to see steps 1 to 5 in action.
  7. Check the "Util.cpp" source file, or the code snippet below, for a detailed description of how the function is working internally, it is extensively commented.
C++
void CUtil::GetFileList(const _tstring& strTargetDirectoryPath, 
     const _tstring& strWildCard, bool bLookInSubdirectories, 
     vector<_tstring>& vecstrFileList)
{
    // Check whether target directory string is empty
    if(strTargetDirectoryPath.compare(_T("")) == 0)
    {
        return;
    }

    // Remove "\\" if present at the end of the target directory
    // Then make a copy of it and use as the current search directory
    _tstring strCurrentDirectory = RemoveDirectoryEnding(strTargetDirectoryPath);

    // This data structure stores information about the file/folder
    // that is found by any of these Win32 API functions:
    // FindFirstFile, FindFirstFileEx, or FindNextFile function
    WIN32_FIND_DATA fdDesktop = {0};

    // Format and copy the current directory
    // Note the addition of the wildcard *.*, which represents all files
    // 
    // Below is a list of wildcards that you can use
    // * (asterisk)      - represents zero or more characters
    //                     at the current character position
    // ? (question mark) - represents a single character
    //
    // Modify this function so that the function can take in a search
    // pattern with wildcards and use it in the line
    // below to find for e.g. only *.mpg files
    //
    // "\\?\" prefix to the file path means that the
    // file system supports large paths/filenames
    _tstring strDesktopPath = _T("");
    strDesktopPath += _T("\\\\?\\");
    strDesktopPath += strCurrentDirectory;
    strDesktopPath = AddDirectoryEnding(strDesktopPath);

    if(strWildCard.compare(_T("")) == 0)
    {
        strDesktopPath += _T("*.*");
    }
    else
    {
        strDesktopPath += strWildCard;
    }

    // Finds the first file and populates the
    // WIN32_FIND_DATA data structure with its information
    // The return value is a search handle used in subsequent
    // calls to FindNextFile or FindClose functions
    HANDLE hDesktop = ::FindFirstFile(strDesktopPath.c_str(), &fdDesktop);    

    // If an invalid handle is returned by FindFirstFile function,
    // then the directory is empty, so nothing to do but quit
    if(hDesktop == INVALID_HANDLE_VALUE)
    {
        return;
    }

    // Do this on the first file found and repeat for every next
    // file found until all the required files
    // that match the search pattern are found
    do 
    {
        // Reconstruct the path
        _tstring strPath = _T("");
        strPath += strCurrentDirectory;
        strPath = AddDirectoryEnding(strPath);
        strPath += fdDesktop.cFileName;

        // Check if a directory was found
        if(fdDesktop.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
        {
            // Get the name of the directory
            _tstring strCurrentDirectoryName = GetDirectoryName(strPath);

            // If its a current (.) or previous (..)
            // directory indicator, just skip it
            if((strCurrentDirectoryName.compare(_T(".")) == 0) || 
               (strCurrentDirectoryName.compare(_T("..")) == 0))
            {
                continue;
            }
            // Other wise this is a sub-directory
            else
            {
                // Check whether function was called
                // to include sub-directories in the search
                if(bLookInSubdirectories)
                {
                    // If sub-directories are to be searched as well,
                    // recursively call the function again,
                    // with the target directory as the sub-directory
                    GetFileList(strPath, strWildCard, bLookInSubdirectories, 
                                vecstrFileList);
                }
            }
        }
        // A file was found
        else
        // if(fdDesktop.dwFileAttributes & FILE_ATTRIBUTE_NORMAL)
        {
            // Add the string to the vector
            vecstrFileList.push_back(_tstring(strPath));
        }
    }
    // Search for the next file that matches the search pattern
    while(::FindNextFile(hDesktop, &fdDesktop) == TRUE);

    // Close the search handle
    ::FindClose(hDesktop);
}

Points of Interest

The code provided here is for unmanaged C++; if you are using managed code or C#, which uses the .NET Framework, you can use the Directory.GetFiles methods; you can read about it here.

While writing this code, I found that, to my annoyance, Microsoft Windows does not have any easy to use unmanaged C++ code to actually do this in a straightforward and simple manner. If you do find this code useful, please leave a comment, it could make my day Smile | :)

Known Issues

When recursively finding files in sub-directories using a wild card, if the parent directory does not have at least one such file, the nested directories will not be searched.

History

  • V1.0 - Initial release.
  • V1.1 - Fixed recursive sub-directory search.

License

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


Written By
Chief Technology Officer Mind & Machines
Bangladesh Bangladesh
(AKA The Freak), besides being a computer nerd, given his love for extreme sports, is a fire spinner, sky diver, and a XC/DH biker. He juggles his time between computing, research, business, travelling, gourmet cooking, and many other bizarre hobbies.

Comments and Discussions

 
AnswerRe: [My vote of 2] Wouldn't a line command do the trick ? Pin
Haseeb Baber21-Dec-11 22:50
Haseeb Baber21-Dec-11 22:50 
AnswerRe: [My vote of 2] Wouldn't a line command do the trick ? Pin
Shup23-Dec-11 11:56
Shup23-Dec-11 11:56 
GeneralRe: [My vote of 2] Wouldn't a line command do the trick ? Pin
mullerhe23-Dec-11 12:25
mullerhe23-Dec-11 12:25 
GeneralRe: [My vote of 2] Wouldn't a line command do the trick ? Pin
Shup23-Dec-11 19:14
Shup23-Dec-11 19:14 
GeneralRe: [My vote of 2] Wouldn't a line command do the trick ? Pin
mullerhe23-Dec-11 21:59
mullerhe23-Dec-11 21:59 
Questionbasic but not bad Pin
BillW3316-Dec-11 10:30
professionalBillW3316-Dec-11 10:30 
AnswerRe: basic but not bad Pin
Shup16-Dec-11 10:34
Shup16-Dec-11 10:34 
GeneralRe: basic but not bad Pin
BillW3316-Dec-11 10:57
professionalBillW3316-Dec-11 10:57 
GeneralMy vote of 1 PinPopular
jeffb4216-Dec-11 6:49
jeffb4216-Dec-11 6:49 
GeneralRe: My vote of 1 Pin
Shup16-Dec-11 7:48
Shup16-Dec-11 7:48 
GeneralRe: My vote of 1 Pin
Haseeb Baber21-Dec-11 22:53
Haseeb Baber21-Dec-11 22:53 
GeneralRe: My vote of 1 Pin
Shup23-Dec-11 11:56
Shup23-Dec-11 11:56 
Questionunable to get results on *.txt Pin
Haseeb Baber15-Dec-11 0:21
Haseeb Baber15-Dec-11 0:21 
AnswerRe: unable to get results on *.txt Pin
Shup15-Dec-11 0:53
Shup15-Dec-11 0:53 
AnswerRe: unable to get results on *.txt Pin
Shup15-Dec-11 2:46
Shup15-Dec-11 2:46 
GeneralRe: unable to get results on *.txt Pin
Haseeb Baber15-Dec-11 3:02
Haseeb Baber15-Dec-11 3:02 
GeneralRe: unable to get results on *.txt Pin
David Crow20-Dec-11 3:12
David Crow20-Dec-11 3:12 
GeneralRe: unable to get results on *.txt Pin
Haseeb Baber21-Dec-11 22:47
Haseeb Baber21-Dec-11 22:47 
GeneralThanks! Pin
tynorton24-Feb-10 11:51
tynorton24-Feb-10 11:51 
GeneralRe: Thanks! Pin
Shup23-Dec-11 12:04
Shup23-Dec-11 12:04 
GeneralExcellent Pin
Sharjith11-Mar-09 17:01
professionalSharjith11-Mar-09 17:01 
GeneralRe: Excellent Pin
Shup11-Mar-09 17:10
Shup11-Mar-09 17:10 
GeneralRe: Excellent Pin
Sharjith13-Mar-09 1:48
professionalSharjith13-Mar-09 1:48 
QuestionCompile error Pin
Saffarian31-Jan-09 21:36
Saffarian31-Jan-09 21:36 
GeneralEncouragement Pin
Loreia16-Jan-09 21:52
Loreia16-Jan-09 21:52 

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.