Как читать, записать в файл windows mobile 6.5 - PullRequest
0 голосов
/ 29 декабря 2010

в Windows Mobile 6.5, как читать / писать текст в файл

Ответы [ 2 ]

3 голосов
/ 29 декабря 2010

Windows Mobile 6.5, как писать / читать текст в файле вставить метку (label1) в режиме конструктора и добавить следующие строки в код


Код:

        string path = "\\test.txt";//file Loc: *start->file explorer->text.txt*
        if (!File.Exists(path))
        {
            using (StreamWriter sw = File.CreateText(path))
            {
                sw.WriteLine("Hello");
                sw.WriteLine("And");
                sw.WriteLine("Welcome");
            }
        }
        using (StreamReader sr = File.OpenText(path))
        {
            string s = "";

            label1.Text = "";
            while ((s = sr.ReadLine()) != null)
            {
                label1.Text += s;
            }
        }
0 голосов
/ 15 января 2015

Для записи в файл

        FileInfo fi = new FileInfo(Path+"\\txtServer.inf");//\\Application
        using (TextWriter txtWriter = new StreamWriter(fi.Open(FileMode.Truncate)))
        {
            txtWriter.WriteLine("Hello");

        }

Для чтения из файла

    string path = Path + "\\txtServer.inf";//\\Application

    if (!File.Exists(path))
        {
            using (StreamWriter sw = File.CreateText(path))
            {

            }
        }
        else
        {
            using (StreamReader sr = File.OpenText(path))
            {
                string s = "";
               Label1.Text ="";

                while ((s = sr.ReadLine()) != null)
                {
                     Label1.Text = s;
                 }
             }
         }
...