-api-id | -api-type |
---|---|
M:Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(Windows.Foundation.Uri) |
winrt method |
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.
The Uniform Resource Identifier (URI) of the app resource to get a StorageFile to represent.
When this method completes, it returns a StorageFile object that represents the Uniform Resource Identifier (URI) resource.
You can use this method to access your app's resources using either "ms-appx://" or "ms-appdata://" Uniform Resource Identifier (URI).
var uri = new Windows.Foundation.Uri("ms-appx:///datafile.xml")
Windows.Storage.StorageFile.getFileFromApplicationUriAsync(uri).done( /* Your success and error handlers */ );
Load images and assets tailored for scale, theme, high contrast, and others