Using Dependency services i am saving files locally on Java.IO.File myDir = new Java.IO.File(root + "/Syncfusion"); folder i need to access the image that was stored from that folder on radial menu
//This is how i am storing the image inside that folder.
Stream sm = GetStreamFromUrl(dataid);
string filepath = DependencyService.Get<ISave>().Save(sm as MemoryStream, filetransfername);
//I am sucessfull to store image on local storage there is no issues.
// this is what i tried.
string result = Path.GetFileName(filepath);
MyRadialItem.Image = result;
//The name of my radial menu item is MyRadialitem