Find Directory Files Easily and Execute a Function for Each of Them
The CScanPath is designed for all developers who want to implement a scanning function for directory/subdirectory files and interact with each of them.
How It Works
When starting the scanning job through the CScanPath class, a separate thread search is created for all files in the directory tree structure. It executes the specified function for each of them. The class also gives you the possibility to get the total directory files' numbers, and the total directory files' sizes.
How to Use It
If you want to know the total directory files sizes or the total directory files numbers, you can use the following method:
- DWORD GetDirFilesNumbers( char * path )
- double GetDirFilesSizes( char * path )
where path is the directory to search for.
Now, to scan a directory and manipulate each file found, proceed like this:
- Declare a static function.
- Make the function to manipulate files found.
- Call the RunScan method.
static void MyFunction( char * file );
void MyFunction( char * file )
{
printf("-> %s\n", file);
}
CScanPath ScanPath; ScanPath.RunScan( "c:\\windows", MyFunction );
If you want to stop scanning for any reason, just do this:
ScanPath.StopScan();
That's ALL!
Sample Code for Console Program
#include <windows.h>
#include "<stdio.h>"
#include "ScanPath.h"
void MyFunction( char * file )
{
printf("-> %s\n", file );
}
void main( int argc, char **argv )
{
if( argc < 2 )
{
printf("Usage : %s <path to scan>\n", argv[0] );
ExitProcess(0);
}
if( !SetCurrentDirectory( argv[1] ) )
{
printf("Error : %s in not a valid directory !\n", argv[1]);
ExitProcess(0);
}
CScanPath Scan;
// the third argument means that the function doesn't return
// until the scan ends
// this is FALSE by default.
Scan.RunScan( argv[1], MyFunction, TRUE );
}

Comments
Why my Console Program can not be compiling?
Posted by caixing_200 on 01/12/2008 10:07pmI am a beginner of C++. I want to use CScanpath class. I use it in a C++ Console Program according to the author's method as possible as I can. But the program can not be compiling. When I compile the program, It produces the error information error C2065b: undeclared identifier .What should I do? Please explain it step by step and offer the source code. Thank you! (My source code with some wrong is in my yahoo Email.username:c.question,password:jg123456) Development environment: Microsoft Windows 2000 Service pack 4 and Microsoft Visual C++.net 2003.
ReplyHow to handle quit while processing?
Posted by Large on 06/20/2006 12:13pmHi the class look great! I wonder how you would handle if the program was closed while thread is running. Is this the best way? CScanPath::~CScanPath() { this->StopScan(); WaitForSingleObject( hThread, INFINITE ); } Please give me suggestions if you have any :)-
ReplySource code updated to 1.1
Posted by aurelien on 06/21/2006 01:52pmHi Lars, and thanks for your comment. I have make a little update to the Class for properly kill the working thread when object is deleted, and prevent multiple RunScan method launch. I hope it will be online soon. Thank you very much for your remark, and sorry for my english ;)
Reply