手机
当前位置:查字典教程网 >编程开发 >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#简单读取文本的实例方法】相关文章:

共享锁using范围的实现方法

C# 将字节流转换为图片的实例方法

c#使用linq技术创建xml文件的小例子

C#图片压缩的实现方法

c# 托盘双击不触发单击事件的实现方法

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

C#绝对路径拼接相对路径的实例代码

c# 获取数据库中所有表名称的方法

c#读取xml文件到datagridview实例

C#索引器简单实例代码

精品推荐
分类导航