folder_getEntryByFileName

Accepts a filename to get information about an entry.

Syntax

public FolderEntry folder_getEntryByFileName( String accessToken, long binderId, String fileName, boolean includeAttachments );

Description

The folder_getEntryByFileName operation obtains information about an entry in a folder by using the entry’s file name.

Although this operation is most useful for Files folders, it works for any folder that requires that all filenames within the folder to be unique.

Parameters and Return Value

accessToken

Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.

binderId

The binder identifier for the folder containing the entry for which you want information.

fileName

The name of the file that corresponds with the entry for which you want information.

includeAttachment

A Boolean value that indicates whether you want Vibe to return the entry’s attachments. The client program is responsible for placement of attachment files on its local system.

return_value

A FolderEntry Java object that contains information about the specified entry.

See Also