Imports multiple files/folders from file system into the folder.

Namespace: BlueCieloECM.InnoCielo.Meridian.Client
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void ImportFiles(
	IWin32Window owner,
	IEnumerable<string> filePaths
)
Visual Basic
Public Sub ImportFiles ( _
	owner As IWin32Window, _
	filePaths As IEnumerable(Of String) _
)
Visual C++
public:
void ImportFiles(
	IWin32Window^ owner, 
	IEnumerable<String^>^ filePaths
)

Parameters

owner
Type: System.Windows.Forms..::..IWin32Window
Any object that implements the IWin32Window interface that represents the top-level window that will own the modal dialog box.
filePaths
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The collection of file/folder paths to import from.

Remarks

The content of the new documents is imported from related files. For each new document created, a dialog is displayed to select the document type if there are multiple related document types.

New document wizards are also displayed if there are custom wizard pages for a selected document type.

Selected folders are imported recursively depending on options defined with SetOptions(ItemOptionFlags) method.

See Also