Developer technologies | Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows devices.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
File contains "Tags" like above and File explorer allows me to update.
However, I cannot find a way to retrieve and update Tags property via StorageFile or uwp.
Anyone know this?
Found a solution.
ImageProperties toImgPr = await copyToFile.Properties.GetImagePropertiesAsync();
toImgPr.Keywords.Add("Wow"); //These values are saved to "Tags"
toImgPr.Keywords.Add("Today");
await toImgPr.SavePropertiesAsync();
Thank you,