Windows.Storage.StorageFile.GetFileFromApplicationUriAsync

September 2, 2020 ยท View on GitHub

-description

Gets a StorageFile object to represent the specified Uniform Resource Identifier (URI) app resource. For examples of sample URIs see Load images and assets tailored for scale, theme, high contrast, and others.

-parameters

-param uri

The Uniform Resource Identifier (URI) of the app resource to get a StorageFile to represent.

-returns

When this method completes, it returns a StorageFile object that represents the Uniform Resource Identifier (URI) resource.

-remarks

You can use this method to access your app's resources using either "ms-appx://" or "ms-appdata://" Uniform Resource Identifier (URI).

-examples

var uri = new Windows.Foundation.Uri("ms-appx:///datafile.xml")
Windows.Storage.StorageFile.getFileFromApplicationUriAsync(uri).done( /* Your success and error handlers */ );

-see-also

Load images and assets tailored for scale, theme, high contrast, and others