FolderInfo
Inheritance: java.lang.Object
public final class FolderInfo
Represents information about personal folder in PST.
Constructors
Constructor | Description |
---|---|
FolderInfo() | Initializes a new instance of the FolderInfo class. |
Fields
Field | Description |
---|---|
ItemMoved | Occurs when an item is moved to the another folder. |
MessageAdded | Occurs when a message is added to the current folder. |
Methods
Method | Description |
---|---|
addFile(String fileName, String messageClass) | Adds a file into pst folder. |
addMapiMessageItem(IMapiMessageItem item) | Adds the IMapiMessageItem object into folder. |
addMessage(MapiMessage message) | Adds a new message into folder. |
addMessages(Iterable | Provides message adding in a bulk mode. |
addSubFolder(String name) | Adds the new sub-folder. |
addSubFolder(String name, boolean createHierarchy) | Adds the new sub-folder. |
addSubFolder(String name, FolderCreationOptions creationOptions) | Adds a subfolder with the specified name to the current folder using the provided creation options. |
addSubFolder(String name, String containerClass) | Adds the new subfolder. |
changeContainerClass(String containerClass) | Changes the container class. |
changeDisplayName(String newName) | Changes the display name. |
changeMessages(MapiPropertyCollection updatedProperties) | Changes all messages in folder. |
changeMessages(Iterable | Changes the messages in folder. |
deleteChildItem(byte[] entryId) | Deletes the item (folder or message) by it’s entryId. |
deleteChildItems(Iterable | Deletes the child messages. |
enumerateFolders() | Exposes the enumerator, which supports an iteration of subfolders in folder. |
enumerateFolders(int kind) | Exposes the enumerator, which supports an iteration of subfolders in folder. |
enumerateMapiMessages() | Exposes the enumerator, which supports an iteration of messages in folder. |
enumerateMessageObjects() | Exposes the enumerator, which supports an iteration of messages in folder. |
enumerateMessages() | Exposes the enumerator, which supports an iteration of messages in folder. |
enumerateMessagesEntryId() | Enumerates the entryID of messages. |
equals(Object arg0) | |
getClass() | |
getContainerClass() | Gets container class of the folder object. |
getContentCount() | Gets the total number of items in the folder. |
getContentUnreadCount() | Gets the number of unread items in the folder. |
getContents() | Get collection of messages. |
Method is used to display brief message information MessageInfo like subject, sender, recipients. | |
getContents(boolean tryToReadCorruptedContents) | Get collection of messages. |
Method is used to display brief message information MessageInfo like subject, sender, recipients. | |
getContents(MailQuery query) | Get collection of messages. |
Method is used to display brief message information MessageInfo like subject, sender, recipients. | |
getContents(int kind) | Get collection of messages. |
Method is used to display brief message information MessageInfo like subject, sender, recipients. | |
getContents(int startIndex, int count) | Gets the collection of messages. |
Method is used to display brief message information MessageInfo like subject, sender, recipients. | |
getDisplayName() | Gets the display name of folder. |
getEntryId() | Gets the entry ID. |
getEntryIdString() | Gets string representation of entry ID. |
getLastModificationTime() | Gets the last modification time. |
getPredefinedType(boolean getForTopLevelParent) | Gets the type of predefined folder. |
getProperties() | Gets the folder properties. |
getSubFolder(String name) | Get subfolder. |
getSubFolder(String name, boolean ignoreCase) | Gets the subfolder. |
getSubFolder(String name, boolean ignoreCase, boolean handlePathSeparator) | Retrieves a subfolder with the specified name from the current folder. |
getSubFolders() | Gets collection of subfolders. |
getSubFolders(MailQuery query) | Gets collection of subfolders. |
getSubFolders(int kind) | Gets collection of subfolders. |
hasSubFolders() | Gets a value indicating whether the Folder object has any subfolders. |
hashCode() | |
mergeWith(FolderInfo sourceFolder) | Merges the folder with the folder from another pst. |
mergeWith(FolderInfo sourceFolder, boolean recursiveHandler) | Merges the folder with the folder from another pst. |
moveContents(FolderInfo newFolder) | Moves the contents to a new folder. |
moveSubfolders(FolderInfo newFolder) | Moves the subfolders to a new parent folder. |
notify() | |
notifyAll() | |
retrieveFullPath() | Retrieves the full path of folder within the PST file. |
toString() | |
updateMessage(String entryId, MapiMessageItemBase updatedMessage) | Updates the message in folder. |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
FolderInfo()
public FolderInfo()
Initializes a new instance of the FolderInfo class.
ItemMoved
public Event<ItemMovedEventHandler> ItemMoved
Occurs when an item is moved to the another folder.
MessageAdded
public final Event<MessageAddedEventHandler> MessageAdded
Occurs when a message is added to the current folder.
addFile(String fileName, String messageClass)
public final String addFile(String fileName, String messageClass)
Adds a file into pst folder.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | The name of file necessary to add. |
messageClass | java.lang.String | The message class. |
Returns: java.lang.String - The string that represents the EntryId of the added message.
addMapiMessageItem(IMapiMessageItem item)
public final String addMapiMessageItem(IMapiMessageItem item)
Adds the IMapiMessageItem object into folder.
Parameters:
Parameter | Type | Description |
---|---|---|
item | IMapiMessageItem | The item necessary to add. |
Returns: java.lang.String - The string that represents the EntryId of the added item.
addMessage(MapiMessage message)
public final String addMessage(MapiMessage message)
Adds a new message into folder.
Parameters:
Parameter | Type | Description |
---|---|---|
message | MapiMessage | The message necessary to add. |
Returns: java.lang.String - The string that represents the EntryId of the added message.
addMessages(Iterable messages)
public final void addMessages(Iterable<MapiMessage> messages)
Provides message adding in a bulk mode.
Parameters:
Parameter | Type | Description |
---|---|---|
messages | java.lang.Iterable<com.aspose.email.MapiMessage> | An IEnumerator representing the enumerator, which supports iteration over a collection of MapiMessage. |
addSubFolder(String name)
public final FolderInfo addSubFolder(String name)
Adds the new sub-folder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | The name of sub-folder. |
Returns: FolderInfo - The new sub-folder.
addSubFolder(String name, boolean createHierarchy)
public final FolderInfo addSubFolder(String name, boolean createHierarchy)
Adds the new sub-folder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | The name of sub-folder. |
createHierarchy | boolean | if set to true , it is possible to create a folder hierarchy using string notation. Backslash (’\’) is used as path separator. |
Returns: FolderInfo - The new sub-folder.
addSubFolder(String name, FolderCreationOptions creationOptions)
public final FolderInfo addSubFolder(String name, FolderCreationOptions creationOptions)
Adds a subfolder with the specified name to the current folder using the provided creation options.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | The name of the subfolder to add. |
creationOptions | FolderCreationOptions | The options for creating the subfolder. |
The name parameter specifies the name of the subfolder to add. The creationOptions parameter allows customization of the subfolder creation behavior, such as specifying whether to create the hierarchy of parent folders and the container class of the new subfolder. If the subfolder with the specified name already exists, the behavior depends on the value of FolderCreationOptions.AllowNameCaseDifference (FolderCreationOptions.getAllowNameCaseDifference/FolderCreationOptions.setAllowNameCaseDifference(boolean)). If FolderCreationOptions.AllowNameCaseDifference (FolderCreationOptions.getAllowNameCaseDifference/FolderCreationOptions.setAllowNameCaseDifference(boolean)) is set to true , a difference in name casing will be allowed, and the subfolder will be added even if an existing folder with the same name but in a different case exists. If FolderCreationOptions.AllowNameCaseDifference (FolderCreationOptions.getAllowNameCaseDifference/FolderCreationOptions.setAllowNameCaseDifference(boolean)) is set to false , the comparison will be case-insensitive, and an InvalidOperationException will be thrown to indicate that a folder with the specified name already exists. The name may contain backslash (\) as the path separators (for example, “parent1\parent2\subfolder”). In this case if FolderCreationOptions.CreateHierarchy (FolderCreationOptions.getCreateHierarchy/FolderCreationOptions.setCreateHierarchy(boolean)) is set to true , the hierarchy of parent folders should be created. |
Returns: FolderInfo - The FolderInfo representing the added subfolder.
addSubFolder(String name, String containerClass)
public final FolderInfo addSubFolder(String name, String containerClass)
Adds the new subfolder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | The name of subfolder. |
containerClass | java.lang.String | Container class of the sub-Folder object. |
Returns: FolderInfo - The new subfolder.
changeContainerClass(String containerClass)
public final void changeContainerClass(String containerClass)
Changes the container class.
Parameters:
Parameter | Type | Description |
---|---|---|
containerClass | java.lang.String | Container class of the of the folder object. |
changeDisplayName(String newName)
public final void changeDisplayName(String newName)
Changes the display name.
Parameters:
Parameter | Type | Description |
---|---|---|
newName | java.lang.String | A new name. |
changeMessages(MapiPropertyCollection updatedProperties)
public final void changeMessages(MapiPropertyCollection updatedProperties)
Changes all messages in folder.
Parameters:
Parameter | Type | Description |
---|---|---|
updatedProperties | MapiPropertyCollection | The updated properties. |
changeMessages(Iterable entryIdCollection, MapiPropertyCollection updatedProperties)
public final void changeMessages(Iterable<String> entryIdCollection, MapiPropertyCollection updatedProperties)
Changes the messages in folder.
Parameters:
Parameter | Type | Description |
---|---|---|
entryIdCollection | java.lang.Iterable<java.lang.String> | The entry identifier collection. |
updatedProperties | MapiPropertyCollection | The updated properties. |
deleteChildItem(byte[] entryId)
public final void deleteChildItem(byte[] entryId)
Deletes the item (folder or message) by it’s entryId.
Parameters:
Parameter | Type | Description |
---|---|---|
entryId | byte[] | The entry id. |
The item must be contained in a folder. |
deleteChildItems(Iterable entryIdCollection)
public final void deleteChildItems(Iterable<String> entryIdCollection)
Deletes the child messages.
Parameters:
Parameter | Type | Description |
---|---|---|
entryIdCollection | java.lang.Iterable<java.lang.String> | The entry id collection. |
enumerateFolders()
public final System.Collections.Generic.IGenericEnumerable<FolderInfo> enumerateFolders()
Exposes the enumerator, which supports an iteration of subfolders in folder.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.email.FolderInfo> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through a subfolders in folder.
enumerateFolders(int kind)
public final System.Collections.Generic.IGenericEnumerable<FolderInfo> enumerateFolders(int kind)
Exposes the enumerator, which supports an iteration of subfolders in folder.
Parameters:
Parameter | Type | Description |
---|---|---|
kind | int | The FolderKind that represents kind of folder. |
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.email.FolderInfo> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through a subfolders in folder.
enumerateMapiMessages()
public final System.Collections.Generic.IGenericEnumerable<MapiMessage> enumerateMapiMessages()
Exposes the enumerator, which supports an iteration of messages in folder.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.email.MapiMessage> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through a messages in folder.
enumerateMessageObjects()
public final System.Collections.Generic.IGenericEnumerable<MessageObject> enumerateMessageObjects()
Exposes the enumerator, which supports an iteration of messages in folder.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.email.MessageObject> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through a messages in folder.
enumerateMessages()
public final System.Collections.Generic.IGenericEnumerable<MessageInfo> enumerateMessages()
Exposes the enumerator, which supports an iteration of messages in folder.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.email.MessageInfo> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through a messages in folder.
enumerateMessagesEntryId()
public final System.Collections.Generic.IGenericEnumerable<String> enumerateMessagesEntryId()
Enumerates the entryID of messages.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerable<java.lang.String> - System.Collections.Generic.IEnumerableltTgt , that represents an enumerator that iterates through entryID of messages in folder.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getContainerClass()
public final String getContainerClass()
Gets container class of the folder object.
Value: The container class.
Returns: java.lang.String
getContentCount()
public final int getContentCount()
Gets the total number of items in the folder.
Value: The content count.
Returns: int
getContentUnreadCount()
public final int getContentUnreadCount()
Gets the number of unread items in the folder.
Value: The content unread count.
Returns: int
getContents()
public final MessageInfoCollection getContents()
Get collection of messages. Method is used to display brief message information MessageInfo like subject, sender, recipients. In terms of performance, this is the most suitable option for obtaining primary information about messages. To extract complete message data, the PersonalStorage.extractMessage(MessageInfo) method is provided.
Returns: MessageInfoCollection - Collection of MessageInfo.
getContents(boolean tryToReadCorruptedContents)
public final MessageInfoCollection getContents(boolean tryToReadCorruptedContents)
Get collection of messages. Method is used to display brief message information MessageInfo like subject, sender, recipients. In terms of performance, this is the most suitable option for obtaining primary information about messages. To extract complete message data, the PersonalStorage.extractMessage(MessageInfo) method is provided.
Parameters:
Parameter | Type | Description |
---|---|---|
tryToReadCorruptedContents | boolean | If the value of this parameter is true, the method will try to read the content even if the file is corrupted. This value can be used if the GetContents() method throws an exception about the file corruption. If the value of this parameter is false, the method works in the same way as GetContents() method without parameters. |
Returns: MessageInfoCollection - Collection of MessageInfo.
getContents(MailQuery query)
public final MessageInfoCollection getContents(MailQuery query)
Get collection of messages. Method is used to display brief message information MessageInfo like subject, sender, recipients. In terms of performance, this is the most suitable option for obtaining primary information about messages. To extract complete message data, the PersonalStorage.extractMessage(MessageInfo) method is provided.
Parameters:
Parameter | Type | Description |
---|---|---|
query | MailQuery | MailQuery that represents search query. |
Returns: MessageInfoCollection - Collection of MessageInfo.
getContents(int kind)
public final MessageInfoCollection getContents(int kind)
Get collection of messages. Method is used to display brief message information MessageInfo like subject, sender, recipients. In terms of performance, this is the most suitable option for obtaining primary information about messages. To extract complete message data, the PersonalStorage.extractMessage(MessageInfo) method is provided.
Parameters:
Parameter | Type | Description |
---|---|---|
kind | int | The message kind. |
Returns: MessageInfoCollection - Collection of MessageInfo.
getContents(int startIndex, int count)
public final MessageInfoCollection getContents(int startIndex, int count)
Gets the collection of messages. Method is used to display brief message information MessageInfo like subject, sender, recipients. In terms of performance, this is the most suitable option for obtaining primary information about messages. To extract complete message data, the PersonalStorage.extractMessage(MessageInfo) method is provided.
Parameters:
Parameter | Type | Description |
---|---|---|
startIndex | int | The start message index. |
count | int | The number of messages that will be retrieved. |
If “count” param is less than 0 or more than remained message count then remained message count will be returned. |
Returns: MessageInfoCollection - Collection of MessageInfo.
getDisplayName()
public final String getDisplayName()
Gets the display name of folder.
Value: The display name.
Returns: java.lang.String
getEntryId()
public final byte[] getEntryId()
Gets the entry ID.
Value: The entry id.
Returns: byte[]
getEntryIdString()
public final String getEntryIdString()
Gets string representation of entry ID.
Value: The entry id string.
Returns: java.lang.String
getLastModificationTime()
public final Date getLastModificationTime()
Gets the last modification time.
Value: The last modification time. If the folder doesn’t have PR_LAST_MODIFICATION_TIME property, DateTime.MinValue is returned.
Returns: java.util.Date
getPredefinedType(boolean getForTopLevelParent)
public final int getPredefinedType(boolean getForTopLevelParent)
Gets the type of predefined folder.
Parameters:
Parameter | Type | Description |
---|---|---|
getForTopLevelParent | boolean | If true, returns the predefined type for the top-level parent folder. This determines whether the current folder is a subfolder of a predefined folder. If false, it returns the predefined type for the current folder. |
Checks if the folder is predefined by returning the corresponding type. |
Returns: int - The StandardIpmFolder enum value. If the folder is not predefined, it returns StandardIpmFolder.Unspecified
getProperties()
public final MapiPropertyCollection getProperties()
Gets the folder properties.
Returns: MapiPropertyCollection
getSubFolder(String name)
public final FolderInfo getSubFolder(String name)
Get subfolder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of subfolder. |
Returns: FolderInfo - A FolderInfo object.
getSubFolder(String name, boolean ignoreCase)
public final FolderInfo getSubFolder(String name, boolean ignoreCase)
Gets the subfolder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | Name of subfolder. |
ignoreCase | boolean | Indicates that a search should ignore case sensitivity when matching the folder name. |
Returns: FolderInfo - A FolderInfo object.
getSubFolder(String name, boolean ignoreCase, boolean handlePathSeparator)
public final FolderInfo getSubFolder(String name, boolean ignoreCase, boolean handlePathSeparator)
Retrieves a subfolder with the specified name from the current folder.
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String | The name of the subfolder to retrieve. |
ignoreCase | boolean | Specifies whether to perform a case-insensitive search for folders with the given name. |
handlePathSeparator | boolean | Specifies whether the specified folder name should be treated as a path if it contains backslashes. |
The name parameter specifies the name of the subfolder to retrieve. The ignoreCase parameter determines whether the search for the subfolder name should be case-sensitive or case-insensitive. If set to true , the search will be case-insensitive, otherwise, it will be case-sensitive. The handlePathSeparator parameter specifies whether the specified folder name should be treated as a path if it contains backslashes. If set to true , the method will interpret the folder name as a path, attempting to navigate to the subfolder using the path. If set to false , the method will treat the folder name as a simple name, searching for a subfolder with an exact name match. If the subfolder is found, the method returns the FolderInfo object representing the retrieved subfolder. If the subfolder is not found, the method returns null . |
Returns: FolderInfo - The FolderInfo representing the retrieved subfolder, or null if the subfolder is not found.
getSubFolders()
public final FolderInfoCollection getSubFolders()
Gets collection of subfolders.
Returns: FolderInfoCollection - The FolderInfo collection.
getSubFolders(MailQuery query)
public final FolderInfoCollection getSubFolders(MailQuery query)
Gets collection of subfolders.
Parameters:
Parameter | Type | Description |
---|---|---|
query | MailQuery | MailQuery that represents search query. |
Returns: FolderInfoCollection - The FolderInfo collection.
getSubFolders(int kind)
public final FolderInfoCollection getSubFolders(int kind)
Gets collection of subfolders.
Parameters:
Parameter | Type | Description |
---|---|---|
kind | int | The FolderKind that represents kind of folder. |
Returns: FolderInfoCollection - The FolderInfo collection.
hasSubFolders()
public final boolean hasSubFolders()
Gets a value indicating whether the Folder object has any subfolders.
Value: The has sub folders.
Returns: boolean
hashCode()
public native int hashCode()
Returns: int
mergeWith(FolderInfo sourceFolder)
public final void mergeWith(FolderInfo sourceFolder)
Merges the folder with the folder from another pst.
Parameters:
Parameter | Type | Description |
---|---|---|
sourceFolder | FolderInfo | The source folder. |
mergeWith(FolderInfo sourceFolder, boolean recursiveHandler)
public final void mergeWith(FolderInfo sourceFolder, boolean recursiveHandler)
Merges the folder with the folder from another pst. OnItemMoved event is called on both messages and directories.
Parameters:
Parameter | Type | Description |
---|---|---|
sourceFolder | FolderInfo | The source folder. |
recursiveHandler | boolean | If true, OnItemMoved will be called on all messages, including messages in sub-directories, otherwise OnItemMoved will be called only for messages in the current directory. |
moveContents(FolderInfo newFolder)
public final void moveContents(FolderInfo newFolder)
Moves the contents to a new folder.
Parameters:
Parameter | Type | Description |
---|---|---|
newFolder | FolderInfo | The new folder. |
moveSubfolders(FolderInfo newFolder)
public final void moveSubfolders(FolderInfo newFolder)
Moves the subfolders to a new parent folder.
Parameters:
Parameter | Type | Description |
---|---|---|
newFolder | FolderInfo | The new parent folder. |
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
retrieveFullPath()
public final String retrieveFullPath()
Retrieves the full path of folder within the PST file.
Returns: java.lang.String - The string that represents the full path.
toString()
public String toString()
Returns: java.lang.String
updateMessage(String entryId, MapiMessageItemBase updatedMessage)
public final void updateMessage(String entryId, MapiMessageItemBase updatedMessage)
Updates the message in folder.
Parameters:
Parameter | Type | Description |
---|---|---|
entryId | java.lang.String | The message entry identifier. |
updatedMessage | MapiMessageItemBase | The updated message. |
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |