是否有任何其他方式檢查Windows應用商店應用中是否存在文件?如何檢查Windows Store應用程序中是否存在文件?
try
{
var file = await ApplicationData.Current.LocalFolder.GetFileAsync("Test.xml");
//no exception means file exists
}
catch (FileNotFoundException ex)
{
//find out through exception
}
我相信,在Windows 8.1的地址本新IsAvailable財產。 – satur9nine 2013-09-04 17:52:59
@ satur9nine - 謝謝,很高興知道。我還沒有機會查看8.1 API。 – keyboardP 2013-09-05 21:08:03
ApplicationData.Current.LocalFolder.TryGetItemAsync(fileName)現在可以做到這一點。不需要更難以處理的異常處理。請記住,這也是一個等待電話。 – RBT 2015-04-06 06:24:29