Microsoft & .NETVisual C#Search Entire Directories for Specified Files with Managed C++

Search Entire Directories for Specified Files with Managed C++

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

I recently designed and coded a popular anti-malware (spyware) application that, amongst other tasks, searched for known malware “fingerprints” in memory, on disk, and in the Windows Registry. To search for the files on disk, I wrote a recursive function that searches a given file starting at a specified folder. The function then calls itself for each folder it finds until it has searched the entire folder hierarchy. This week’s column illustrates this function.

Enumerating Directories and Files with .NET

An MFC developer would enumerate directories in search of specific files typically via the CFindFile class or by using the Win32 FindFirstFile and FindNextFile functions. In .NET, this task is accomplished via the DirectoryInfo and FileInfo classes.

The DirectoryInfo class is very easy to use and, for this particular task, requires the knowledge of only a few methods and properties:

  • Instantiation – To create an instance of the DirectoryInfo class, simply pass the directory or folder for which you need to retrieve information.
  • Verification directory exists – After instantiating the DirectoryInfo object and before using any of its method or properties, you should verify that the specified directory exists. To do that, check that the DirectoryInfo::Exists property is set to true.
  • Enumerating a directory’s files – The DirectoryInfo class defines a method called GetFiles that returns an array of objects of type FileInfo. Each FileInfo object then contains information about that file such as the file name, its attributes, creation, last modified timestamps, and so on.
  • Enumerating a directory’s “sub-directories” – The DirectoryInfo class defines a method called GetDirectories that returns an array of objects of type DirectoryInfo, where each object represents a sub-directory.

Generic Function to Search for Files

Now that you know the basics of the .NET classes needed to enumerate directories and files, you can easily write a generic function to search a given directory path for a specified file. To that end, the FindFile function takes the following parameter:

  • startingDir – The directory where you want the search to begin (As this function calls itself recursively, this value will change to represent the current directory being searched.)
  • fileName – The file name for which the function is being called
  • foundFiles – As more than one instance of the searched-for file name might be located when searching a directory structure, this object (of type ArrayList) will contain the found files. As with the startingDir parameter, this value is constantly updated as the FindFile function calls itself for each sub-directory.

As you can see in the following code, the FileFind function first retrieves the DirectoryInfo object for the specified directory (startingDir):

void FindFile(String* startingDir, String* fileName, ArrayList* foundFiles)
{
  DirectoryInfo* dirInfo = new DirectoryInfo(startingDir);
  if (dirInfo->Exists) // make sure directory exists
  {
    FileInfo* files[] = dirInfo->GetFiles();
    for (int i = 0; i < files->Length; i++)
    {
      String* currFileName = files[i]->ToString();
      if (0 == String::Compare(currFileName, fileName, true))
      {
        foundFiles->Add(files[i]);
      }
    }

    DirectoryInfo* subDirs[] = dirInfo->GetDirectories();
    for (int i = 0; i < subDirs->Length; i++)
    {
      String* dirName = subDirs[i]->FullName;
      FindFile(dirName, fileName, foundFiles);
    }
  }
}

Once the DirectoryInfo::Exists property is checked to ensure that the directory exists, the directory’s files are retrieved into a FileInfo array. This array is enumerated and each file’s name is compared to the caller’s specified file name. If the file names match, the FileInfo object is added to the ArrayList, which the caller will ultimately enumerate when the function has completed. (For the anti-malware application, I had to also compare MD5 hash-code values when a matching file name was found. However, as most people don’t need this added functionality, the FindFile function matches only on file name.)

Once all the files have been processed for the current directory, the sub-directories are retrieved and the FindFile function is then called for each of these sub-directories. This process enables the FindFile function to correctly search an entire directory hierarchy for all instances of the caller’s specified file name.

Now, all the caller has to do is to instantiate an ArrayList object, pass it to the FindFile function, and then enumerate the ArrayList object upon return:

ArrayList* foundFiles = new ArrayList();
FindFile(S"d:acglegal", S"eula.txt", foundFiles);

if (foundFiles->Count)
{
  for (int i = 0; i < foundFiles->Count; i++)
  {
    FileInfo* fileInfo = 
      static_cast<FileInfo*>(foundFiles->get_Item(i));
    Console::WriteLine(fileInfo->FullName);
  }
}
else
{
  Console::WriteLine("SNo matching files found");
}

About the Author

Tom Archer owns his own training company, Archer Consulting Group, which specializes in educating and mentoring .NET programmers and providing project management consulting. If you would like to find out how the Archer Consulting Group can help you reduce development costs, get your software to market faster, and increase product revenue, contact Tom through his Web site.

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories