メトロ スタイル アプリケーションで単純な画像キャッシュを行っています。これが私がすでに行ったことです:
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;
}
ここで、画像を比較する最後の部分を処理する必要があります。一時フォルダーに画像が存在するかどうかを確認しています。存在しない場合は新しくダウンロードするだけですが、存在する場合はサーバーと同じかどうかを確認する必要があります。どうすればそれを達成できますか?