string location = Path.Combine(FileSystem.Current.AppDataDirectory, "Download", "abc.jpg"); image.Source = ImageSource.FromFile(location);
string location = Path.Combine(FileSystem.Current.AppDataDirectory, "Download", "abc.jpg"); image.Source = ImageSource.FromFile(location);
Your download path of the location is equivalent to below:
Windows:
C:\Users\User\AppData\Local\Packages\{GUID}_{hash}\LocalState\Download
Android:
/data/user/0/your_appliactionID/files/Download
iOS\macOS:
Returns the Library directory that is backed up by iTunes and iCloud.
Official reference link:https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/storage/file-system-helpers?tabs=android