This is to extract the path, I reverse to find the "last "/" as there is only find the "first" and reverse it again. This is working fine, and as you can see the path is OK.
It is working fine when I read an mp3 file and ply it, so the pb is not in extracting the path
The File component uses a relative path, not an absolute path, as I've posted dozens of times. If FileScope = App the path is relative to the ASD, so just the file name.
Oooops, yes, File component is not using absolute path (and as you say, you mentioned this MANY times).
It is just confusing that different components have different behaviours
Thanks a lot for you great and so fast support
Yes, but only if the file was also saved with the File component. Obviously this path is different from the one the web component saves to. Unfortunately, we also have no way with iOS to find out the path that the File component uses for the app-specific directory (ASD) on iOS. Nor can we check the existence of a file, since the File.Exists method operates with FileScope.
So, I found a solution working for both iOS AND Android. I set SaveResponse to false, and when I get the text, I save it with SaveFile, then I can read it with ReadFrom. I do not know where it is stored, but it works!