CloudFileDirectory.ListFilesAndDirectoriesSegmented Method

Definition

Overloads

ListFilesAndDirectoriesSegmented(Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext)

Returns a result segment containing a collection of file items in the share.

ListFilesAndDirectoriesSegmented(String, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext)

Returns a result segment containing a collection of file items in the share.

ListFilesAndDirectoriesSegmented(FileContinuationToken)

Returns a result segment containing a collection of file items in the share.

ListFilesAndDirectoriesSegmented(Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext)

Returns a result segment containing a collection of file items in the share.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.File.FileResultSegment ListFilesAndDirectoriesSegmented (int? maxResults, Microsoft.Azure.Storage.File.FileContinuationToken currentToken, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListFilesAndDirectoriesSegmented : Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.File.FileResultSegment
override this.ListFilesAndDirectoriesSegmented : Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.File.FileResultSegment
Public Overridable Function ListFilesAndDirectoriesSegmented (maxResults As Nullable(Of Integer), currentToken As FileContinuationToken, options As FileRequestOptions, operationContext As OperationContext) As FileResultSegment

Parameters

maxResults
Nullable<Int32>

A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000.

currentToken
FileContinuationToken

A continuation token returned by a previous listing operation.

options
FileRequestOptions

An FileRequestOptions object that specifies additional options for the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Returns

A result segment containing objects that implement IListFileItem.

Attributes

Applies to

ListFilesAndDirectoriesSegmented(String, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext)

Returns a result segment containing a collection of file items in the share.

[Microsoft.Azure.Storage.DoesServiceRequest]
public Microsoft.Azure.Storage.File.FileResultSegment ListFilesAndDirectoriesSegmented (string prefix, int? maxResults, Microsoft.Azure.Storage.File.FileContinuationToken currentToken, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
member this.ListFilesAndDirectoriesSegmented : string * Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.File.FileResultSegment
Public Function ListFilesAndDirectoriesSegmented (prefix As String, maxResults As Nullable(Of Integer), currentToken As FileContinuationToken, options As FileRequestOptions, operationContext As OperationContext) As FileResultSegment

Parameters

prefix
String

A string containing the file or directory name prefix.

maxResults
Nullable<Int32>

A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000.

currentToken
FileContinuationToken

A continuation token returned by a previous listing operation.

options
FileRequestOptions

An FileRequestOptions object that specifies additional options for the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Returns

A result segment containing objects that implement IListFileItem.

Attributes

Applies to

ListFilesAndDirectoriesSegmented(FileContinuationToken)

Returns a result segment containing a collection of file items in the share.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.File.FileResultSegment ListFilesAndDirectoriesSegmented (Microsoft.Azure.Storage.File.FileContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListFilesAndDirectoriesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.FileResultSegment
override this.ListFilesAndDirectoriesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken -> Microsoft.Azure.Storage.File.FileResultSegment
Public Overridable Function ListFilesAndDirectoriesSegmented (currentToken As FileContinuationToken) As FileResultSegment

Parameters

currentToken
FileContinuationToken

A continuation token returned by a previous listing operation.

Returns

A result segment containing objects that implement IListFileItem.

Attributes

Applies to