I test this apply : Parallel listview canvas scrolling - Google Docs
It work well.
And now, i want to work with my own file but i can't remember where i put it on the first.
Is there a function wich give the full path of a file we load in the apply ?
Flie1.Scope don't do this.
my question is where i put my file in first that i can read it but i don't know where and i can't find it.
If i know the response, i can put my new file in the same place.
If your file is stored in the external storage: /storage/emulated/0/Download/StatesAbbreviation.csv
and this file is not created by your app you won't be able to read it with the File component on Android 11+. You must use SAF in this case.
If the file is created by your app, you can read it with the File component using a realtive path and FileScope = Legacy or Shared (as I already said): /Download/StatesAbbreviation.csv
Will that file change or do you want to read it only once? In the last case you could upload it as asset in the media section of the desiger and use the blocks you previously posted
My aia is posted earlier when i said : "It's the code i used"
And no, i don't want to copy the file, i just want ro read it from /download for exemple.
For me, but perhaps i mistake, "asset" = file created by the app.
Legacy: Files will be read from and written to the file system using the App Inventor rules prior to release nb187. That is, file names starting with a single / will be read from and written to the root of the external storage directory, e.g., /sdcard/. Legacy functionality will not work on Android 11 or later.
And so i tried with my sdcard named /4160-203F/. But i think it's mine only and not the others. If i write /4160-203F/TextFile.txt perhaps it go on my phone but what about the others ?