Click here to Skip to main content
Licence 
First Posted 17 Apr 2000
Views 141,774
Bookmarked 65 times

FileMonitor

By | 11 Dec 2000 | Article
An ATL control for monitoring your directories and/or files for updates, creation and deletion

Introduction

This project makes it possible to monitor your directories and/or your files. The control will generate an event whenever a file or subdirectory is created, updated or deleted.

If you want to know how you can use this control in a MFC application, then look at the page: How to use an ATL-control with MFC.

I've written this project in Visual C++ 6.0 with ATL 3.0, because you can't use multithreading in Visual Basic.

Properties

Name Type R/W Description
Start Boolean Read/Write

When set to true, the monitor will start watching the directories.

Returns True if the monitor is started. False when it is not started.

Methods

Name Returns Parameters Description
AddPath / ByVal sPathName as String Adds a directory for monitoring.
RemovePath / ByVal sPathName as String Removes a directory.

Events

Name Parameters Description
Notify ByVal sPathName As String, ByVal nType As Integer Notifies the control that a file (nType = 1) or a subdirectory (nType = 0) is changed, deleted or created in the directory sPathName.

Remarks

It's recommended that you first add all the directories you want to monitor before you start monitoring, because when the monitor is running, it will always be stopped and started again when you add a new directory.

The control was tested on Windows NT and Windows 98.

The control is written with Visual C++ 6.0 using ATL 3.0. The control was tested with Visual Basic 6.0

Resources

These are the resources I've used to create this project:

  1. PRB: Firing Event in Second Thread Causes IPF or GPF

Because I use multithreading in this control and it's not possible to fire an event from within a thread, I used the following trick to fire the event.

The control is created as a window. I pass a pointer of the control to the thread function where I can use the window handle of the control to send a message. This message will be handled and will fire the event to the container of the control.

class ATL_NO_VTABLE CWatch : 
    public CWindowImpl<CWatch>, // The control is implemented as a window
    public CComObjectRootEx<CComSingleThreadModel>,
    public CComCoClass<CWatch, &CLSID_Watch>,
    public IConnectionPointContainerImpl<CWatch>,
    public IDispatchImpl<IWatch, &IID_IWatch, &LIBID_FILEMONITOR>,
    public CProxy_IWatchEvents< CWatch >
{
public:
    CWatch()
    {
        m_bStarted = false;
        m_hEvent = NULL;
        m_hThread = NULL;
    }
    deqString m_Paths;
    HANDLE m_hEvent;
    HANDLE m_hThread;
    DWORD m_dwThreadId;
    bool m_bStarted;
    cstring m_sNotify;

DECLARE_WND_CLASS(TEXT("Watch"))
BEGIN_MSG_MAP(CWatch)
    MESSAGE_HANDLER(WM_WATCH_NOTIFY, OnWatchNotify) // The messagehandler
END_MSG_MAP()

    LRESULT OnWatchNotify(UINT uMsg, WPARAM wParam, 
        LPARAM lParam, BOOL &bHandled)    // Fires the Notify event
    {
        Fire_Notify(_bstr_t(m_sNotify.c_str()), wParam);
        return 0;
    }
    ...
};

The thread is created as follows in the Start method:

m_hThread = CreateThread(NULL, 0, ThreadFunc, (LPVOID) this, 0, &m_dwThreadId);

As you can see, I pass the this-pointer to the ThreadFunc.

Updates

  • 11 May 2000 - fixed a bug in the AddPath-method
  • 12 Dec 2000 - The major change is that the thread for monitoring the directories is created only once.

    In the past, the thread was recreated when you added or removed a path. Now I use an event to notify the thread. When the thread receives the event, it will automatically refresh the FileNotifications.

    Check my website for updates.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Franky Braem

Web Developer

Belgium Belgium

Member

Programmer since 1991 using C/C++/Visual Basic and Java. Playing with wxWindows at home.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThread problem Pinmemberfredrick998:18 11 Aug '11  
Answergood Pinmemberv_fisher17:22 2 Aug '11  
GeneralNo FileMonitor Pinmembersprice866:11 4 Nov '07  
Questiongood codes, but 2 questions... [modified] Pinmemberm_harriss17:03 26 Jul '06  
QuestionWhy First Access Winlogon???? Pinmembereaster_200719:04 20 Feb '06  
Generaldetails of detected file Pinmembergajesh1:01 13 Sep '05  
GeneralJava Integration Pinmemberanindya1234522:15 10 Nov '04  
Questionsome bug ? Pinmemberboy061220:44 12 May '04  
QuestionHow to get Log of all files used for a day PinmemberLegend Never Dies20:51 23 Feb '04  
AnswerRe: How to get Log of all files used for a day Pinmemberm_harriss16:40 26 Jul '06  
GeneralCreating an invisible file monitor PinmemberPerlHack16:24 17 Apr '03  
QuestionCan you notify the user before deleting a file and let the user confirm it? Pinmemberja1618814:12 12 Dec '02  
Generalwatch.cpp PinmemberAnonymous12:33 13 Nov '01  
General:watch.h PinmemberAnonymous12:32 13 Nov '01  
General:watch.h PinmemberAnonymous12:30 13 Nov '01  
Generalhelp, gurus!! PinmemberAnonymous14:23 12 Oct '01  
GeneralRe: help, gurus!! PinmemberJim Crafton14:29 12 Oct '01  
GeneralRe: help, gurus!! PinmemberAnonymous14:35 12 Oct '01  
GeneralRe: help, gurus!! PinmemberAnonymous14:51 12 Oct '01  
GeneralDon't quit your day job... PinmemberAnonymous17:54 4 Jul '01  
GeneralRe: Don't quit your day job... PinmemberFranky Braem3:21 6 Aug '01  
GeneralGood but needs some work PinmemberAnonymous17:49 4 Jul '01  
QuestionDisplay Filename? PinmemberAnonymous7:33 16 Apr '01  
GeneralWho Deleted the files.... PinmemberFred4:59 12 Dec '00  
GeneralRe: Who Deleted the files.... PinmemberFranky Braem20:57 12 Dec '00  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 12 Dec 2000
Article Copyright 2000 by Franky Braem
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid