StorageFolder.GetFileAsync(String) Method

Definition

Gets the file with the specified name from the current folder.

C#
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<StorageFile> GetFileAsync(string name);

Parameters

name
String

The name (or path relative to the current folder) of the file to get.

Returns

When this method completes successfully, it returns a StorageFile that represents the specified file.

Implements

M:Windows.Storage.IStorageFolder.GetFileAsync(System.String)
Attributes

Exceptions

The specified file does not exist. Check the value of name.

You don't have permission to access the specified file. For more information, see File access permissions.

The path cannot be in Uri format (for example, /image.jpg). Check the value of name.

Examples

The following example shows how to get a file from the current folder by calling the GetFileAsync method. This example also shows how to get a file from a subfolder of the current folder by providing a relative path.

C#
using Windows.Storage;
using System.Threading.Tasks;

// Get the app's installation folder.
StorageFolder appFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;

// Get the app's manifest file from the current folder.
string name = "AppxManifest.xml";
StorageFile manifestFile = await appFolder.GetFileAsync(name);

// Get a file from a subfolder of the current folder
// by providing a relative path.
string image = @"Assets\Logo.scale-100.png";
StorageFile logoImage = await appFolder.GetFileAsync(image);

Remarks

To get an item that's a file or a folder, call the GetItemAsync method.

Applies to

Product Versions
WinRT Build 10240, Build 10586, Build 14383, Build 15063, Build 16299, Build 17134, Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100

See also