from the documentation http://ai2.appinventor.mit.edu/reference/components/storage.html#File
ReadFrom( fileName )
Reads text from a file in storage. Prefix the
fileName
with/
to read from a specific file on the SD card (for example,/myFile.txt
will read the file/sdcard/myFile.txt
). To read assets packaged with an application (also works for the Companion) start thefileName
with//
(two slashes). If afileName
does not start with a slash, it will be read from the application’s private storage (for packaged apps) and from/sdcard/AppInventor/data
for the Companion.
just use the SaveFile method to save it there
but probably you like to upload your file in the Media section into your project (assets) and read it from there? just use //teste.txt
then
Taifun