Moves this folder and all of its subfolders and contents from its current parent folder to the target parent folder specified.

Note: You cannot move the root folder for the object store.


Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Sub Move( _ 
   ByVal targetFolder As IFolder _ 
)
C#
void Move(
   IFolder targetFolder
)
C++
void Move(
   IFolder targetFolder
) abstract 
J#
void Move(
   IFolder targetFolder
)
JScript
function Move(
   targetFolder : IFolder
)

Parameters

targetFolder
A Folder object for the intended parent folder for this instance. The target folder must already exist.

Exceptions

Exception TypeCondition
EngineRuntimeExceptionThrown if the target folder is this instance or one of its subfolders.

See Also