Description
-
Returns relative path of the folder, as seen by the
client.
Property type
-
A String value.
Syntax
-
object.Path
The Path Property syntax has these parts:
object |
An expression evaluating to an object
of type ImapFolder. |
Remarks
-
This property will return full path to the folder as
seen by the client. As you know, folders are stored in
tree-alike hierarchy, and each folder knows what folder is
his parent one. When client goes deep into folder tree
structure, he must always know his current position -
represented with this path.
To get idea what path is, you will see it's typically
like this:
/Documents/Work/Joe
or
/Archive/Old
or
/INBOX
For example, full path from your code to first example
above would be
User.Folders("Documents").Subfolders("Work").Subfolders("Joe")
As you can see - client sees folders delimited with /
|