In my application, I will provide two options to load files as FromResource() and FromFile() method. In the first method, the file should be marked as EmbeddedResource and loaded through the FromResource() method. The second option, user don't want to keep the file as EmbeddedResource and it directly refers to the file path. If users enter only a file name rather than an absolute path, it will directly access the file from the application's Resources folder, like "Resources.{filename}".
Can you please guide me on how to access/read Resources folder's files in the .NET MAUI?