API Reference
| Classic JavaDoc |
Exchange.getRootFolder
public ExchangeFolder getRootFolder(String folderPath)
public ExchangeFolder getRootFolder()
Returns a sub-folder of the root folder (FolderType.Root) for the specified name or path.
Accepted path separators are '\' or '/'. If the specified name or path doesn't exists, null
is returned. For example, the path string "Top of Information Store/Sent Items" can
be used.
See Also:
This method returns the same result as:
getFolder(FolderType.Root).getFolders().get(folderPath);
the Exchange folder identified by the specified name/path or null if the folder is not found.
Throws:ExchangeServiceException | if any errors occur during the communication with Exchange. |
public ExchangeFolder getRootFolder()
Returns the logged user's root folder. This folder contains all of the user's sub-folders.
See Also:
This method returns the same result as:
getFolder(FolderType.Root);
the root Exchange folder.
Throws:ExchangeServiceException | if any errors occur during the communication with Exchange. |
Community comments
Powered by JavaDocPlus