FileInformationFactory.GetFilesAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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 형식)을 반환합니다.
- 특성