Read text file from Mobile Device

Hello

I have a active sync connection to a pda emulator. Is it possible to read a text file from the device using a stream reader

e.g


StreamReader sr = new StreamReader(@"My Computer \My Documents\My Music\jl.txt");
string fileText = sr.ReadToEnd();
sr.Close();


Answer this question

Read text file from Mobile Device

  • JLB4536

    The emulator allows you to map a storage card to a folder on the desktop, you can then open files in this folder using a local path e.g.

    \Storage Card\mytextfile.txt

    Peter



  • Read text file from Mobile Device