Package version:

Interface DirectoryListFilesAndDirectoriesOptions

Options to configure ShareDirectoryClient.listFilesAndDirectories operation.

interface DirectoryListFilesAndDirectoriesOptions {
    abortSignal?: any;
    includeAttributes?: boolean;
    includeEtag?: boolean;
    includeExtendedInfo?: boolean;
    includePermissionKey?: boolean;
    includeTimestamps?: boolean;
    prefix?: string;
    tracingOptions?: any;
}

Hierarchy (view full)

Properties

abortSignal?: any

An implementation of the AbortSignalLike interface to signal the request to cancel the operation. For example, use the @azure/abort-controller to create an AbortSignal.

includeAttributes?: boolean
includeEtag?: boolean
includeExtendedInfo?: boolean

Optional. Specified that extended info should be included in the returned FileItem or DirectoryItem. If true, the Content-Length property will be up-to-date, FileId will be returned in response.

includePermissionKey?: boolean
includeTimestamps?: boolean
prefix?: string

Filters the results to return only entries whose name begins with the specified prefix.

tracingOptions?: any