CCeFileFind - File Finder class for Windows CE

Environment: VC6 SP2, NT4 SP3, CE 2.0/2.01/2.11

Article text goes here

Class CCeFileFind performs local file searches on a Windows CE system. CCeFileFind includes member functions that begin a search, locate a file, and return the name, path or size of the file. The following code will enumerate all the files in the current directory, printing the name of each file:
CCeFileFind finder;

BOOL bWorking = finder.FindFile("*.*");

while (bWorking)
{
 bWorking = finder.FindNextFile();
 AfxMessageBox(  finder.GetFileName() );
}

After calling FindFile to begin the file search, call FindNextFile to retrieve subsequent files. You must call FindNextFile at least once before calling any of attribute member functions:

Downloads

Download demo project - 15 Kb
Download source - 3 Kb

IT Offers

Comments

  • There are no comments yet. Be the first to comment!

Leave a Comment
  • Your email address will not be published. All fields are required.

Go Deeper

  • Enterprise security threats are growing in complexity and scope, and the culprits are constantly evolving. It is no longer sufficient to …
  • Increasing demands placed on IT, along with tightening budgets has prompted IT leaders to seek out alternative technologies and improved …
  • This online eBook provides insight and advice on how to build an effective disaster recovery strategy in the evolving world of virtual …

Most Popular Programming Stories

More for Developers

Latest Developer Headlines

RSS Feeds