Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
My Folders
piyush123po
Can anyone tell me how to get the Folders under "My Folders" node in Worksite. I am using worksite 8.2 version.
E.g.
IManSubscriptionFolders : these are the folders under "My Matters"
IManFavoritesFolders : these are the folders under "My Favorites"
similarly how to get My Folders.what is the type of these folders.
Please revert me asap.
Thanks
Piyush Gupta
Find more posts tagged with
Comments
garoberts
Is it not in the tree when you expand - WorkSite Explorer > "Database" ?
You should see My Workspaces, Other Workspaces, My fodlers and Other Folders.
Giles
Migrateduser
Get the Root object of the Database, which will return top-level Folders that are not under a Tab or WorkSpace.
dopey
If you are doing this in software, what about this?
IManSession s1...
IManFolderSearchParameters fsps = s1.DMS.CreateFolderSearchParameters();
fsps.Add(imFolderAttributeID.imFolderOwner, s1.UserID);
fsps.Add(imFolderAttributeID.imFolderParentID, "NULL");
IManFolders folders = s1.WorkArea.SearchFolders(new ManStrings(), fsps);
piyush123po
Hi Giles,
Yes "My Folders" is not the tree, its under the database node, so how can i get the folders under My Folders"?
Thanks
Piyush Gupta
Migrateduser
Once you have Database pDataBase
iManFolders rootfolders = pdatabase.root
jny
"My Folders" is a virtual node; it's not a server-stored object, thus you cannot get a handle to it. It simply represents the root level folders.