Get file paths for files in Centennial app

You can create a folder structure in your project where you can include the files and then since you are already crossing the Centennial Bridge, you can start using the Windows.Storage.StorageFile WinRT API to interact with files. For example, you can use: StorageFile.GetFileFromApplicationUriAsync(new Uri(“ms-appx:///folderUnderYourAppRoot/image.bmp”)); to get the file which is under the “folderUnderYourAppRoot”. This is … Read more