I'm familiar with the Data File Handling concept involved in C, C++ and also have implemented it in Console Applications using the System.IO namespace and the necessary classes involved.
However, I am not able to do so in a Windows Phone 8 project.
What I'd like is to directly add an already created text file to my Windows Phone 8 project and perform the read and write operations as per my need. (Not to be confused with working with files through the Isolated Storage)
I found some solutions where the file is read as a whole into one variable, however, this does not solve my purpose. I want some sort of control in the file so that I can traverse to the exact line number and read the particular line into a local string variable. I'd also like to detect EOL and EOF.
Is it possible to implement this to the exact level of detail that I require?
It would also be very helpful if you'd explain the difference between a text file present in the Isolated Storage and a text file directly present in the Project.
Kindly help me out. Thanks!