Click or drag to resize
IGDStorageFolderGetFileAsync Method
Gets the specified file from the current folder.

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

Parameters

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

Return Value

Type: IAsyncOperationGDStorageFile
When this method completes successfully, it returns a GDStorageFile that represents the file.
Remarks
If you simply want to get a file in your app, see the GetFileAsync method of the GDStorageFolder class.
See Also