我在Metro风格的应用程序中进行简单的图像缓存。这是我已经完成的事情:
private async void GetImage()
{
bool isFolderExisting = true;
bool isFileExisting = true;
StorageFolder storageFolder = null;
StorageFile storageFile = null;
// get screenshots folder
try
{
storageFolder = await ApplicationData.Current.TemporaryFolder.GetFolderAsync("screenshots");
}
catch (System.IO.FileNotFoundException ex)
{
isFolderExisting = false;
}
// if folder doesn't exist, create new one
if (isFolderExisting == false)
storageFolder = await ApplicationData.Current.TemporaryFolder.CreateFolderAsync("screenshots");
// get screenshot
try
{
storageFile = await storageFolder.GetFileAsync(this.LinkId);
//IAsyncAction threadPoolWorkItem = ThreadPool.RunAsync((source) => { updateImage(storageFile); });
}
catch (System.IO.FileNotFoundException ex)
{
isFileExisting = false;
}
// if file doesn't exists, download and save new one
if (isFileExisting == false)
{
var uri = new Uri(WebServiceAddress + "/screenshot/" + this.LinkId, UriKind.Absolute);
var thumbnail = Windows.Storage.Streams.RandomAccessStreamReference.CreateFromUri(uri);
storageFile = await StorageFile.CreateStreamedFileFromUriAsync(this.LinkId, uri, thumbnail);
await storageFile.CopyAsync(storageFolder, storageFile.Name, NameCollisionOption.ReplaceExisting);
}
//this.ImageSource = new Windows.UI.Xaml.Media.Imaging.BitmapImage(new Uri("ms-appdata:///temp/screenshots/" + this.LinkId));
this.Image = "ms-appdata:///temp/screenshots/" + this.LinkId;
}
现在我必须处理比较图像的最后一部分。 我正在检查临时文件夹中是否存在图像。如果它不存在我只是下载新的,但如果存在,我需要检查它是否与服务器上相同。我该如何实现呢?
答案 0 :(得分:0)
在StorageFile类上使用GetBasicPropertiesAsync方法。 BasicProperties对象包含DateModified属性,您可以使用该属性在客户端和服务器之间进行比较。