The file_appenfront in 2.016 now works as a charme. Thank you

Now I need to read all the strings written in the file and extract the info stored. Shold I use the standard C file functions or there is smarter way using Zorro, predefined functions?

In C I was looking for something like:
Code:
main(){
   char buf[80];
   FILE *fp;fp=fopen("testo.txt", "r");
   while (fscanf(fp,"%s",buf)>0)
      printf("%s", buf);
   fclose(fp);
}