手机
当前位置:查字典教程网 >编程开发 >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# WinForm中Panel实现用鼠标操作滚动条的实例方法

共享锁using范围的实现方法

C# 实现简单打印的实例代码

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

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

C#简单的加密类实例

C#索引器简单实例代码

C#最简单的关闭子窗体更新父窗体的实现方法

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

.NET创建、删除、复制文件夹及其子文件的实例方法

精品推荐
分类导航