Public Property IncludeSubdirectories As Boolean
Dim instance As FileSystemWatcher Dim value As Boolean value = instance.IncludeSubdirectories instance.IncludeSubdirectories = value
public bool IncludeSubdirectories { get; set; }
public: property bool IncludeSubdirectories { bool get (); void set (bool value); }
/** @property */ public boolean get_IncludeSubdirectories () /** @property */ public void set_IncludeSubdirectories (boolean value)
public function get IncludeSubdirectories () : boolean public function set IncludeSubdirectories (value : boolean)
Set IncludeSubdirectories to true when you want to watch for change notifications for files and directories contained within the directory specified through the Path property, and its subdirectories. Setting the IncludeSubdirectories property to false helps reduce the number of notifications sent to the internal buffer. For more information on filtering out unwanted notifications, see the NotifyFilter and InternalBufferSize properties.
When true, IncludeSubdirectories is recursive through the entire sub tree, not just the immediate child directories. The relative path to a file or directory within the sub tree returns in the Name property of FileSystemEventArgs and the OldName property of RenamedEventArgs, depending on changes you are watching for. You can get the fully qualified path from the FullPath property of FileSystemEventArgs and the OldFullPath property of RenamedEventArgs, depending on the changes you are watching for.
If a directory is created in the sub tree of the directory you are watching, and IncludeSubdirectories is true, that directory will automatically be watched.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.