• 读写文件流


     1        string path = @"c:\temp\MyTest.txt";
     2        try 
     3        {
     4            if (File.Exists(path)) 
     5            {
     6                File.Delete(path);
     7            }

     8
     9            using (StreamWriter sw = new StreamWriter(path)) 
    10            {
    11                sw.WriteLine("This");
    12                sw.WriteLine("is some text");
    13                sw.WriteLine("to test");
    14                sw.WriteLine("Reading");
    15            }

    16
    17            using (StreamReader sr = new StreamReader(path)) 
    18            {
    19                while (sr.Peek() >= 0
    20                {
    21                    Console.WriteLine(sr.ReadLine());
    22                }

    23            }

    24        }
     
    25        catch (Exception e) 
    26        {
    27            Console.WriteLine("The process failed: {0}", e.ToString());
    28        }

    29
  • 相关阅读:
    普通图片转ascii码字符图
    基于RAF的一个小动画框
    HTML5给我们带来了什么
    记坑
    以后的博客可能会偏向游戏开发方向
    总结:js中4类修改样式的方法
    小记:css特殊性
    css小记
    探究绑定事件的this指向以及event传参的小问题
    手把手教你图片转ASCII码图
  • 原文地址:https://www.cnblogs.com/tiasys/p/605234.html
Copyright © 2020-2023  润新知