I am using the component, to read a punedata.txt file stored in my raw Internal Storage.
When I use the block with the path /punedata.txt, it says ‘Error 2101 : the file /punedata.txt could not be found’. I also tried adding /storage/emulated/0/punedata.txt as the path, but the same error occurs.
Here's what the file's path (from my device's file manager) looks like
this is the internal (emulated) sdcard…
you might want to read from shared storage like /Download or from the ASD - application specific directory… see also the overview
Which Android version did you test it on? Apparently not with an Android 11 device.
As I said before, the root directory of the external storage is no longer accessible under Android 11 as far as non-media files are to be accessed (even not with SAF). This would require MANAGE_EXTERNAL_STORAGEManifest.permission | Android Developers. (This special permission will Google most likely not grant for your app).
It should read: Android ≤ 10, because Kodular has decided to continue to declare android: requestLegacyExternalStorage = "true" in the Manifest (therefore it still works under Android 10).