在Xamarin Forms中,我们如何检查Environment.SpecialFolder.DesktopDirectory是否包含文件?
我正在使用以下内容从azure存储区下载图像并将其显示在页面上,效果很好,但我只想在没有文件的情况下这样做。
_activityIndicator.IsRunning = true;
var imgPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory), "");
var blobList = await BlobStorageService.GetBlobs<CloudBlockBlob>("images");
foreach (CloudBlockBlob b in blobList)
{
Image _image = new Image();
imgPath = imgPath + b.Name;
await b.DownloadToFileAsync(imgPath, FileMode.Create);
StackLayout s = new StackLayout();
_title.Text = b.Name;
_image.Source = imgPath;
s.Children.Add(_title);
s.Children.Add(_image);
iStack.Children.Add(s);
}
答案 0 :(得分:1)
您可以使用以下方法检查文件是否存在:
if (File.Exists(imgPath))
{
**Write Your Code**
}