I have to read an image in the Pictures folder that has accents (e.g "éleá"). This name is connected with a database that has also accents. I am using those resources from a client and don't know if I can change both the database and the file name.
I have sucessfully load images without accents using this code:
IRandomAccessStream stream = StreamWithExternalResource(resourcePath).Result;
BitmapImage bitmapImage = new BitmapImage();
bitmapImage.SetSource(stream);
image.Source = bitmapImage;
Is it possible to read files that have the filename with accents in windows metro/store apps?