Syntax

expression.Folders

expression A variable that represents a SharedWorkspace object.

Remarks

The SharedWorkspaceFolders collection does not include the root document library folder itself, which by default is named "Shared Documents".

Example
The following example lists the subfolders in the current shared workspace.

Visual Basic for Applications
 Dim swsFolders As Office.SharedWorkspaceFolders Set swsFolders = ActiveWorkbook.SharedWorkspace.Folders MsgBox "There are " & swsFolders.Count & _ " folder(s) in the current shared workspace.", _ vbInformation + vbOKOnly, _ "Collection Information" Set swsFolders = Nothing 
folders folders property ofv

See also: