ITaskFolder::GetFolders method (taskschd.h)

Gets all the subfolders in the folder.

Syntax

HRESULT GetFolders(
  [in]  LONG                  flags,
  [out] ITaskFolderCollection **ppFolders
);

Parameters

[in] flags

This parameter is reserved for future use and must be set to 0.

[out] ppFolders

The collection of subfolders in the folder.

Pass in a reference to a NULL ITaskFolderCollection interface pointer. Referencing a non-NULL pointer can cause a memory leak because the pointer will be overwritten.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header taskschd.h
Library Taskschd.lib
DLL Taskschd.dll

See also

ITaskFolder

Task Scheduler