Click or drag to resize
IGDStorageFolderGetItemAsync Method
Gets the specified item from the IGDStorageFolder.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
IAsyncOperation<IGDStorageItem> GetItemAsync(
	string name
)

Parameters

name
Type: SystemString
The name (or path relative to the current folder) of the item (file or directory) to retrieve.

Return Value

Type: IAsyncOperationIGDStorageItem
When this method completes successfully, it returns the file or folder (type IGDStorageItem).
Remarks
If you simply want to get a file or folder in your app, see the GetItemAsync method of the GDStorageFolder class.
See Also