[This is preliminary documentation and is subject to change.]

Gets the virtual folder path corresponding to a particular group or user where the document will be stored based on the value of level.

Namespace:  OfficeClip.DBLayer.Desktop
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public string GetVirtualFolderOld(
	int userId,
	int groupId,
	string level
)
Visual Basic (Declaration)
Public Function GetVirtualFolderOld ( _
	userId As Integer, _
	groupId As Integer, _
	level As String _
) As String
Visual C++
public:
String^ GetVirtualFolderOld(
	int userId, 
	int groupId, 
	String^ level
)

Parameters

userId
Type: System..::.Int32
The unique id of the user.
groupId
Type: System..::.Int32
Id of the group whose virtual folder path has to be retrieved.
level
Type: System..::.String
A string indicating whether a root virtual folder returned is for a group or user. String starting with "001" indicates that a particular group's virtual folder path will be returned. String starting with "002" indicates that the currently logged in user's virtual folder path will be returned.

Return Value

The path for the respective virtual folder.

Remarks

If the respective virtual folder is not present, it is created.

See Also