Search code examples
c#windows-mobile-6logfiles

Creating log file on windows mobile 6


I'm writing a program on windows mobile 6 in C# and I want it to collect data from GPS-module every second. What is the simplest way to store it on the phone? I'm thinking about either txt or XML file. What do you recommend?


Solution

  • The simplest way is to use a txt file since you can just continuously append to the end.

    Going the XML route will require more space and more processing since you can't just seek to the end and append data.