手机
当前位置:查字典教程网 >编程开发 >C#教程 >c#简单读取文本的实例方法
c#简单读取文本的实例方法
摘要:复制代码代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;...

复制代码 代码如下:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.IO;

namespace StreamReadWrite

{

class Program

{

static void Main(string[] args)

{

// Get the directories currently on the C drive.

DirectoryInfo[] cDirs = new DirectoryInfo(@"e:").GetDirectories();

// Write each directory name to a file.

using (StreamWriter sw = new StreamWriter("CDriveDirs.txt"))

{

foreach (DirectoryInfo dir in cDirs)

{

sw.WriteLine(dir.Name);

}

}

// Read and show each line from the file.

string line = "";

using (StreamReader sr = new StreamReader("CDriveDirs.txt"))

{

while ((line = sr.ReadLine()) != null)

{

Console.WriteLine(line);

}

}

}

}

}

【c#简单读取文本的实例方法】相关文章:

c#在控制台输出彩色文字的方法

c#获取本机的IP地址的代码

C#读写文件的方法汇总

C#计算代码执行时间的方法

C# 语音功能的实现方法

c#中虚函数的相关使用方法

使用C#开发Socket通讯的方法

C#获取系统版本信息方法

TextBox获取输入焦点时自动全选的实现方法

C#图片压缩的实现方法

精品推荐
分类导航