In my windows store app i sync with a Server and save files in this way:
StorageFile file = await ApplicationData.Current.LocalFolder.CreateFileAsync(fileName.Replace('/', '_'),
CreationCollisionOption.GenerateUniqueName);
var downloader = new BackgroundDownloader();
DownloadOperation download = downloader.CreateDownload(uri, file);
Now i want to add a metadata to the file such as the modificationDate of the file
on the Server.
How can i store this information in order to retrieve the value if i close and re-open the app? Maybe the perfect solution is to extend the StorageFile class but it
is sealed
My goal is to be synchronized with the Server of course...