Is there any other way of checking whether a file exists in a Windows Store app?
try { var file = await ApplicationData.Current.LocalFolder.GetFileAsync(
The documentation for TryGetItemAsync says, "This example shows how to checkfor the existence of a file." It seems that this API is officially intended to serve that purpose.