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 型) が返されます。

属性

こちらもご覧ください

適用対象