Existe-t-il un autre moyen de vérifier si un fichier existe dans une application Windows Store?
try
{
var file = await ApplicationData.Current.LocalFolder.GetFileAsync("Test.xml");
//no exception means file exists
}
catch (FileNotFoundException ex)
{
//find out through exception
}