LOTUSSCRIPT/COM/OLE CLASSES


PutAllInFolder method
Example

Adds all the documents in the collection to the specified folder. If the folder does not exist in the document's database, it is created.

Defined in

NotesDocumentCollection

Syntax

Call notesDocumentCollection.PutAllInFolder( folderName$ [, createonfail ] )

Parameters

folderName$


createonfail
Usage

If a document is already inside the folder you specify, PutAllInFolder does nothing for that document. If you specify a path to a folder, and none of the folders exist, the method creates all of them for you. For example:

Call doc.PutAllInFolder( Vehicles\Bikes )

If neither Vehicles nor Bikes exists, PutAllInFolder creates both, placing the Bikes folder inside the Vehicles folder.

Language cross-reference

putAllInFolder method in Java DocumentCollection class

Example
See Also