Click here to Skip to main content
15,867,277 members
Articles / Desktop Programming / MFC
Article

Spying a file system

Rate me:
Please Sign up or sign in to vote.
4.26/5 (49 votes)
22 Sep 2003CPOL3 min read 403.5K   7.2K   124   112
Article describes how to create a file system spy application

Image 1

Introduction

Windows applications can do dynamic monitoring of any specified directory. Once changes have occurred and are detected, the spy application can run various tasks ( run antivirus, log activity, determine more information about changes, call other tasks etc).

Win 32 API provides three functions that are based on the events:

  • FindFirstChangeNotification
  • FindNextChangeNotification
  • FindCloseChangeNotification
  • ReadDirectoryChangesW

These allow creating watchdog or spying applications.

How to create

First of all spy application should call

FindFirstChangeNotification 
to create event handler to monitor changes specified as the functions parameters.

HANDLE h = FindFirtsChangeNotification("C:\\Program Files", TRUE, mask); 

This function allows to handle following types of notifications:

  • FILE_NOTIFY_CHANGE_FILE_NAME – File creating, deleting and file name changing

  • FILE_NOTIFY_CHANGE_DIR_NAME – Directories creating, deleting and file name changing

  • FILE_NOTIFY_CHANGE_ATTRIBUTES – File or Directory attributes changing

  • FILE_NOTIFY_CHANGE_SIZE – File size changing

  • FILE_NOTIFY_CHANGE_LAST_WRITE – Changing time of write of the files

  • FILE_NOTIFY_CHANGE_SECURITY – Changing in security descriptors

The result of FindFirstChangeNotification can be passed as parameter in to WaitForSingleObject and when specified event has occurred, application can do various actions such as: antivirus starting, adding record to the log file, and so on. Note that this function does not detect changes, it only creates synchronization event and marks it if changes are made. After our spy application handles changes, it should call FindNextChangeNotification to continue monitoring or FindCloseChangeNotification to finish it.

Win32 API provides also ReadDirectoryChangesW that can operate with following filters (MSDN) :

FILE_NOTIFY_CHANGE_FILE_NAME

Any file name change in the watched directory or subtree causes a change notification wait operation to return. Changes include renaming, creating, or deleting a file.

FILE_NOTIFY_CHANGE_DIR_NAME

Any directory-name change in the watched directory or subtree causes a change notification wait operation to return. Changes include creating or deleting a directory.

FILE_NOTIFY_CHANGE_ATTRIBUTES

Any attribute change in the watched directory or subtree causes a change notification wait operation to return.

FILE_NOTIFY_CHANGE_SIZE

Any file-size change in the watched directory or subtree causes a change notification wait operation to return. The operating system detects a change in file size only when the file is written to the disk. For operating systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.

FILE_NOTIFY_CHANGE_LAST_WRITE

Any change to the last write-time of files in the watched directory or subtree causes a change notification wait operation to return. The operating system detects a change to the last write-time only when the file is written to the disk. For operating systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.

FILE_NOTIFY_CHANGE_LAST_ACCESS

Any change to the last access time of files in the watched directory or subtree causes a change notification wait operation to return.

FILE_NOTIFY_CHANGE_CREATION

Any change to the creation time of files in the watched directory or subtree causes a change notification wait operation to return.

FILE_NOTIFY_CHANGE_SECURITY

Any security-descriptor change in the watched directory or subtree causes a change notification wait operation to return.

Sample

Give your attention to the following code in the demo project:

void ThreadRoute( void* arg )
{
 HANDLE file = FindFirstChangeNotification("c:\\Program Files", 
     FALSE, (DWORD)((Param*)arg)->parameter);
 WaitForSingleObject(file, INFINITE);
 CTime tm = CTime::GetCurrentTime();
 m_Sec.Lock(); // Enter to Critical section for display notification
 int item = pList->InsertItem(pList->GetItemCount(), ((Param*)arg)->message);
 pList->SetItemText(item, 1, tm.Format("%Y/%m/%d - %H:%M:%S"));
 m_Sec.Unlock();

 while (true)
 {
   FindNextChangeNotification(file);
   WaitForSingleObject(file, INFINITE);
   tm = CTime::GetCurrentTime();
   m_Sec.Lock(); // Enter to Critical section for display notification
   item = pList->InsertItem(pList->GetItemCount(), ((Param*)arg)->message);
   pList->SetItemText(item, 1, tm.Format("%Y/%m/%d/ - %H:%M:%S"));
   m_Sec.Unlock();
  }
}

and here is the fragment using ReadDirectoryChangesW

void ThreadRoute1( void* arg ) 
 {
  USES_CONVERSION;
  HANDLE hDir = CreateFile( 
    CString("c:\\Program Files"), /* pointer to the file name */
    FILE_LIST_DIRECTORY,                /* access (read-write) mode */
    FILE_SHARE_READ|FILE_SHARE_DELETE,  /* share mode */
    NULL, /* security descriptor */
    OPEN_EXISTING, /* how to create */
    FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
    NULL /* file with attributes to copy */
  );

  FILE_NOTIFY_INFORMATION Buffer[1024];
  DWORD BytesReturned;
  while( ReadDirectoryChangesW(
     hDir, /* handle to directory */
     &Buffer, /* read results buffer */
     sizeof(Buffer), /* length of buffer */
     TRUE, /* monitoring option */
     FILE_NOTIFY_CHANGE_SECURITY|
     FILE_NOTIFY_CHANGE_CREATION|
     FILE_NOTIFY_CHANGE_LAST_ACCESS|
     FILE_NOTIFY_CHANGE_LAST_WRITE|
     FILE_NOTIFY_CHANGE_SIZE|
     FILE_NOTIFY_CHANGE_ATTRIBUTES|
     FILE_NOTIFY_CHANGE_DIR_NAME|
     FILE_NOTIFY_CHANGE_FILE_NAME, /* filter conditions */
     &BytesReturned, /* bytes returned */
     NULL, /* overlapped buffer */
     NULL))... /* completion routine */

These are thread functions that do the described spying actions.

Conclusion

The attached Demo application starts separate threads to monitor all possible changes in the "c:\\Program Files" directory and shows occurred notifications and its date/time in the List control. Demo application shows also how to use ReadDirectoryChangesW and compare both methods visually.

Functionality of the Demo application can be extended to determine concrete changes, to log changes in to file, run external applications or tasks on the specified event, use described methods as system service and so on. Readers have full freedom to modify and use the demo project.

License

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


Written By
Software Developer (Senior)
Europe Europe
I am a professional Software Developer with more than 20 years' experience.

I am open for contacts and interesting ideas.
You can write me at:
vitali_eh@yahoo.com

Comments and Discussions

 
QuestionDo I receive notification if the change to folder happen before calling FindNextChangeNotification? Pin
Member 141408055-Feb-19 4:51
Member 141408055-Feb-19 4:51 
BugYes, but buggy Pin
guju8-Nov-16 23:33
guju8-Nov-16 23:33 
GeneralThank you Pin
khejing 111687573-Nov-14 15:58
khejing 111687573-Nov-14 15:58 
GeneralMy vote of 5 Pin
XinDavid13-Jun-12 20:54
XinDavid13-Jun-12 20:54 
GeneralThanks Pin
peterpc070116-Mar-12 15:46
peterpc070116-Mar-12 15:46 
GeneralMy vote of 5 Pin
Member 80364465-Nov-11 5:59
Member 80364465-Nov-11 5:59 
useful article
GeneralMy vote of 4 Pin
sahar792516-Jan-11 4:38
sahar792516-Jan-11 4:38 
GeneralMy vote of 5 Pin
Option Greek22-Sep-10 3:26
Option Greek22-Sep-10 3:26 
GeneralIt is a good example for ReadDirectoryChangesW Pin
zz96227-Oct-09 23:14
zz96227-Oct-09 23:14 
GeneralRe: It is a good example for ReadDirectoryChangesW Pin
conrad Braam2-Sep-10 4:10
conrad Braam2-Sep-10 4:10 
QuestionGet new path Pin
fer_cyberlinklabs3-Mar-09 14:55
fer_cyberlinklabs3-Mar-09 14:55 
AnswerRe: Get new path Pin
Kdiggins14-Mar-09 7:21
Kdiggins14-Mar-09 7:21 
GeneralHelp - Cannot compile on VS 2009 - link error Pin
John Denney15-Aug-08 23:04
John Denney15-Aug-08 23:04 
GeneralRe: Help - Cannot compile on VS 2009 - link error Pin
John Denney21-Aug-08 1:49
John Denney21-Aug-08 1:49 
GeneralReadDirectoryChangesW Problem~~ Pin
york52812-Jun-08 8:09
york52812-Jun-08 8:09 
GeneralRe: ReadDirectoryChangesW Problem~~ Pin
conrad Braam2-Sep-10 4:12
conrad Braam2-Sep-10 4:12 
GeneralFILE_ACTION_RENAMED_NEW ASSERT FAILURE Pin
phoenix_fei_fei18-Nov-07 13:40
phoenix_fei_fei18-Nov-07 13:40 
GeneralDo not detect all the changed files Pin
GameProfessor10-May-07 16:55
GameProfessor10-May-07 16:55 
GeneralRe: Do not detect all the changed files Pin
David Crow4-Oct-07 7:43
David Crow4-Oct-07 7:43 
GeneralRe: Do not detect all the changed files Pin
Arsene Shahin2-Jun-08 23:51
Arsene Shahin2-Jun-08 23:51 
QuestionRe: Do not detect all the changed files Pin
David Crow3-Jun-08 4:20
David Crow3-Jun-08 4:20 
GeneralRe: Do not detect all the changed files Pin
Vitali Halershtein3-Jun-08 4:14
Vitali Halershtein3-Jun-08 4:14 
GeneralRe: Do not detect all the changed files Pin
David Crow3-Jun-08 4:22
David Crow3-Jun-08 4:22 
GeneralRe: Do not detect all the changed files Pin
Vitali Halershtein3-Jun-08 4:39
Vitali Halershtein3-Jun-08 4:39 
QuestionHow to terminate the thread? Pin
Guna Velu1-May-07 23:23
Guna Velu1-May-07 23:23 

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.