IVsFileChangeEvents::DirectoryChanged Method (String^)

 

Notifies clients of changes made to a directory.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int DirectoryChanged(
	String^ pszDirectory
)

Parameters

pszDirectory
Type: System::String^

[in] Name of the directory that had a change.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsFileChangeEvents::DirectoryChanged(
   [in] LPCOLESTR pszDirectory
);

The change could have happened in a sub-directory if sub-directories are also being watched.

Return to top
Show: