IStorageFolderQueryOperations.GetFilesAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetFilesAsync(CommonFileQuery) |
Recupera un elenco di file in base alla query specificata (enumerazione superficiale). In questo modo viene restituito uno snapshot dei file in un momento specifico e non è possibile tenere traccia delle modifiche tramite eventi. |
GetFilesAsync(CommonFileQuery, UInt32, UInt32) |
Recupera un elenco di file in un intervallo specificato basato sulla query di file specificata. In questo modo viene restituito uno snapshot dei file in un momento specifico e non è possibile tenere traccia delle modifiche tramite eventi. |
GetFilesAsync(CommonFileQuery)
Recupera un elenco di file in base alla query specificata (enumerazione superficiale). In questo modo viene restituito uno snapshot dei file in un momento specifico e non è possibile tenere traccia delle modifiche tramite eventi.
public:
IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync(CommonFileQuery query);
/// [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))
Parametri
- query
- CommonFileQuery
Tipo di query di file da eseguire.
Restituisce
Al termine di questo metodo, restituisce un elenco (tipo IVectorView) di file rappresentati da oggetti StorageFile .
- Attributi
Vedi anche
Si applica a
GetFilesAsync(CommonFileQuery, UInt32, UInt32)
Recupera un elenco di file in un intervallo specificato basato sulla query di file specificata. In questo modo viene restituito uno snapshot dei file in un momento specifico e non è possibile tenere traccia delle modifiche tramite eventi.
public:
IAsyncOperation<IVectorView<StorageFile ^> ^> ^ GetFilesAsync(CommonFileQuery query, unsigned int startIndex, unsigned int maxItemsToRetrieve);
/// [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))
Parametri
- query
- CommonFileQuery
Tipo di query di file da eseguire.
- startIndex
-
UInt32
unsigned int
uint32_t
Indice in base zero del primo file nell'intervallo. Il valore predefinito del parametro è 0.
- maxItemsToRetrieve
-
UInt32
unsigned int
uint32_t
Numero massimo di file da recuperare. Usare -1 per recuperare tutti i file.
Restituisce
Al termine di questo metodo, restituisce un elenco (tipo IVectorView) di file rappresentati da oggetti StorageFile .
- Attributi
Commenti
Usare questo overload per recuperare migliorare le prestazioni del sistema presentando una visualizzazione virtuale dei risultati della query che include solo il subset di file necessario.