다음을 통해 공유


FileInformationFactory.GetFilesAsync 메서드

정의

오버로드

GetFilesAsync()

컬렉션의 모든 StorageFile 개체에 대한 정보를 포함하는 FileInformation 개체의 컬렉션을 검색합니다.

GetFilesAsync(UInt32, UInt32)

컬렉션의 StorageFile 개체 범위에 대한 정보를 포함하는 FileInformation 개체의 컬렉션을 검색합니다.

GetFilesAsync()

컬렉션의 모든 StorageFile 개체에 대한 정보를 포함하는 FileInformation 개체의 컬렉션을 검색합니다.

public:
 virtual IAsyncOperation<IVectorView<FileInformation ^> ^> ^ GetFilesAsync() = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsyncDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<FileInformation>> GetFilesAsync();
[Windows.Foundation.Metadata.Overload("GetFilesAsyncDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<FileInformation>> GetFilesAsync();
function getFilesAsync()
Public Function GetFilesAsync () As IAsyncOperation(Of IReadOnlyList(Of FileInformation))

반환

이 메서드가 성공적으로 완료되면 FileInformation 개체의 목록(IVectorView 형식)을 반환합니다.

특성

추가 정보

적용 대상

GetFilesAsync(UInt32, UInt32)

컬렉션의 StorageFile 개체 범위에 대한 정보를 포함하는 FileInformation 개체의 컬렉션을 검색합니다.

public:
 virtual IAsyncOperation<IVectorView<FileInformation ^> ^> ^ GetFilesAsync(unsigned int startIndex, unsigned int maxItemsToRetrieve) = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<FileInformation>> GetFilesAsync(uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetFilesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<FileInformation>> GetFilesAsync(uint startIndex, uint maxItemsToRetrieve);
function getFilesAsync(startIndex, maxItemsToRetrieve)
Public Function GetFilesAsync (startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of FileInformation))

매개 변수

startIndex
UInt32

unsigned int

uint32_t

범위에서 첫 번째 StorageFile 의 인덱스(0부터 시작)입니다.

maxItemsToRetrieve
UInt32

unsigned int

uint32_t

정보를 검색할 StorageFile 개체의 최대 수입니다.

반환

이 메서드가 성공적으로 완료되면 FileInformation 개체의 목록(IVectorView 형식)을 반환합니다.

특성

추가 정보

적용 대상