Comment faire pour vérifier si le fichier existe dans une Application du Windows Store?

Est-il un autre moyen de vérifier si un fichier existe dans une application du Windows Store?

try
{
    var file = await ApplicationData.Current.LocalFolder.GetFileAsync("Test.xml");
    //no exception means file exists
}
catch (FileNotFoundException ex)
{ 
    //find out through exception 
}
InformationsquelleAutor Haris Hasan | 2011-12-24