How to deploy a file in UWP
My UWP needs to load a file and I want to know: Where to put this file, in the package installation folder or the application data folder? How to deploy this file to the folder I want when I deploy my app using VS 2015? You can add files either as resources or content files to your project. If the file is something like a Image, SQLite Database or text file, the best approach will be the Content build action. You can then access the file using StorageFile.GetFromApplicationUriAsync : var storeLogoFile = StorageFile.GetFromApplicationUriAsync( new Uri( "ms-appx:///Assets/StoreLogo.png" ) ); You