Create a StorageFile from path Win8.1

c#, file, windows-8.1

Solution

StorageFile file = await StorageFile.GetFileFromPathAsync(item.Path);

Problem

I want to manually create a `StorageFile` from a path, but there is no constructor for a `StorageFile`. Is there a simple way to do a thing like this? ``` StorageFile f = new StorageFile("C:\song.mp3"); ```

Original source