Hi i created one sample application that saves data as text file using simple c (FILE) function . I am using below code
FILE *fp = fopen("Log.txt", "w");
fprintf(fp,"%s\t %s\t %s\t %s\t %s\t\n","Id","Type","MacId","IPAddress","Version");
fclose(fp);
When i run this code in simulator.There is a Log.txt file in Macintosh HD folder.Then i can able to view the text file log.When i run this in device ,Where it can store .txt file and how can i view this text file ? Is it possible ?
Thanks in advance...........