removeAllFromFolder (ViewEntryCollection - Java)

Removes the documents associated with the entries in a view entry collection from a specified folder.

Defined in

ViewEntryCollection

Syntax

public void removeAllFromFolder(String folderName)
    throws NotesException

Parameters

String folderName

The name of the folder from which to remove the documents. The folder may be personal if the program is running on the workstation. If the folder is within another folder, specify a path to it, separating folder names with backslashes and escaping the backslashes in a literal, for example:

vec.removeAllFromFolder("Vehicles\\Bikes");

Usage

This method does nothing for documents not in the folder you specify. This method does nothing if the folder you specify does not exist.

Example