A StorageFileusually represents a file that is already saved. If you look StorageFile.Pathafter shooting, it should be something like this:
C:\Users\[username]\AppData\Local\Packages\[appname]\TempState\picture003.jpg
Since the file is already saved, you can move or copy it to another location, for example:
storageFile.moveAsync(Windows.Storage.KnownFolders.picturesLibrary)
Hope this helps.
source
share