|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
FindFirstChangeNotification
The FindFirstChangeNotification function creates a change notification handle and sets up initial change
notification filter conditions. A wait on a notification handle succeeds when a
change matching the filter conditions occurs in the specified directory or
subtree.
HANDLE FindFirstChangeNotification(
LPCTSTR lpPathName,
| // pointer to name of directory to watch
| BOOL bWatchSubtree,
| // flag for monitoring directory or directory tree
| DWORD dwNotifyFilter
| // filter conditions to watch for
| );
|
|
Parameters
lpPathName
Points to a null-terminated string that specifies the path of the directory to
watch.
bWatchSubtree
Specifies whether the function will monitor the directory or the directory
tree. If this parameter is TRUE, the function monitors the directory tree rooted
at the specified directory; if it is FALSE, it monitors only the specified
directory.
dwNotifyFilter
Specifies the filter conditions that satisfy a change notification wait. This
parameter can be one or more of the following values:
FILE_NOTIFY_CHANGE_FILE_NAME
|
|
| Any filename change in the watched directory or subtree causes a change
notification wait operation to return. Changes include renaming, creating, or
deleting a filename.
|
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.
|
| 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_SECURITY
|
|
| Any security-descriptor change in the watched directory or subtree causes a
change notification wait operation to return.
|
Return Values
If the function succeeds, the return value is a handle to a find change
notification object.
If the function fails, the return value is INVALID_HANDLE_VALUE. To get
extended error information, call GetLastError.
Remarks
The wait functions can monitor the specified directory or subtree by using the handle returned
by the FindFirstChangeNotification function. A wait is satisfied when one of the filter conditions occurs in the
monitored directory or subtree.
After the wait has been satisfied, the application can respond to this
condition and continue monitoring the directory by calling the FindNextChangeNotification function and the appropriate wait function. When the handle is no longer
needed, it can be closed by using the FindCloseChangeNotification function.
See Also
FindCloseChangeNotification, FindNextChangeNotification
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|