FolderInformation.GetFilesAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetFilesAsync() |
현재 폴더에서 모든 파일을 검색합니다. |
GetFilesAsync(CommonFileQuery) |
공통 폴더 쿼리를 기반으로 현재 폴더에서 파일을 검색합니다. |
GetFilesAsync(CommonFileQuery, UInt32, UInt32) |
일반적인 파일 쿼리를 기반으로 현재 폴더에서 파일 범위를 검색합니다. |
GetFilesAsync()
현재 폴더에서 모든 파일을 검색합니다.
public:
virtual IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync() = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsyncOverloadDefaultOptionsStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFile>> GetFilesAsync();
[Windows.Foundation.Metadata.Overload("GetFilesAsyncOverloadDefaultOptionsStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFile>> GetFilesAsync();
function getFilesAsync()
Public Function GetFilesAsync () As IAsyncOperation(Of IReadOnlyList(Of StorageFile))
반환
이 메서드가 성공적으로 완료되면 폴더에 있는 StorageFile 개체의 목록(IVectorView 형식)을 반환합니다.
구현
- 특성
추가 정보
적용 대상
GetFilesAsync(CommonFileQuery)
공통 폴더 쿼리를 기반으로 현재 폴더에서 파일을 검색합니다.
public:
virtual IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync(CommonFileQuery query) = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsyncOverloadDefaultStartAndCount")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFile>> GetFilesAsync(CommonFileQuery const& query);
[Windows.Foundation.Metadata.Overload("GetFilesAsyncOverloadDefaultStartAndCount")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFile>> GetFilesAsync(CommonFileQuery query);
function getFilesAsync(query)
Public Function GetFilesAsync (query As CommonFileQuery) As IAsyncOperation(Of IReadOnlyList(Of StorageFile))
매개 변수
- query
- CommonFileQuery
일반적인 파일 쿼리입니다.
반환
이 메서드가 성공적으로 완료되면 폴더에 있는 StorageFile 개체의 목록(IVectorView 형식)을 반환합니다.
구현
- 특성
추가 정보
적용 대상
GetFilesAsync(CommonFileQuery, UInt32, UInt32)
일반적인 파일 쿼리를 기반으로 현재 폴더에서 파일 범위를 검색합니다.
public:
virtual IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync(CommonFileQuery query, unsigned int startIndex, unsigned int maxItemsToRetrieve) = GetFilesAsync;
/// [Windows.Foundation.Metadata.Overload("GetFilesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<StorageFile>> GetFilesAsync(CommonFileQuery const& query, uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetFilesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<StorageFile>> GetFilesAsync(CommonFileQuery query, uint startIndex, uint maxItemsToRetrieve);
function getFilesAsync(query, startIndex, maxItemsToRetrieve)
Public Function GetFilesAsync (query As CommonFileQuery, startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of StorageFile))
매개 변수
- query
- CommonFileQuery
일반적인 파일 쿼리입니다.
- startIndex
-
UInt32
unsigned int
uint32_t
범위 내 첫 번째 파일의 인덱스(0부터 시작)입니다.
- maxItemsToRetrieve
-
UInt32
unsigned int
uint32_t
검색할 최대 파일 수입니다.
반환
이 메서드가 성공적으로 완료되면 폴더에 있는 StorageFile 개체의 목록(IVectorView 형식)을 반환합니다.
구현
M:Windows.Storage.Search.IStorageFolderQueryOperations.GetFilesAsync(Windows.Storage.Search.CommonFileQuery,System.UInt32,System.UInt32)
M:Windows.Storage.Search.IStorageFolderQueryOperations.GetFilesAsync(Windows.Storage.Search.CommonFileQuery,unsigned int,unsigned int)
M:Windows.Storage.Search.IStorageFolderQueryOperations.GetFilesAsync(Windows.Storage.Search.CommonFileQuery,uint32_t,uint32_t)
- 특성