IO Operation
io操作中常使用的类包括有FileStream,File,Directory,Path,FileInfo, DirectoryInfo,FileStreamInnfo,StreamReader,StreamWriter,FileSystemWatcher,上面的类存在于System.IO命名空间中,另外在System.IO.Compression命名空间中还存在下面的两个类,DeflateStream和GZipStream,这两个类分别允许使用Deflate和gzip模式来读写压缩文件。
1.File and Directory class
方法 | 说明 |
Copy | 将文件复制到目的地址 |
Create | 用于在规定的路径创建一个文件 |
Delete | 删除文件 |
Open | 打开文件,返回的是FileStream |
Move | 实现的是文件的转移 |
需要注意的是File市System.IO中的静态成员,所以在使用是不能直接new,而是直接使用本身
File.Open (@”PATH”)
方法 | 说明 |
CreateDirectory | 创建指定的路径 |
Delete | 删除。。 |
GetDirectories | 放回当前目录名 |
GetFiles | 得到当前目录下的文件名的string数组 |
GetFilesSystemEntries | 除上面的文件名之外还包括的有目录名 |
Move | 将指定的目录移动到其他的位置 |
Directory同样是static class,使用同上
2.FileInfo class
属性 | 说明 |
Directory | 返回的是DirectoryInfo |
DirectoryName | 文件目录名 |
IsReadOnly | 文件的属性read only |
Length | 文件的长度 |
FileInfo fileInfo = new FileInfo(@"c:\test.txt");创建FileInfo对象,然后使用上面的属性
3.DirectoryInfo class
属性 | 说明 |
Parent | 返回DirectoryInfo对象 |
Root | 当前目录的根目录(例如c:\) |
Console.WriteLine ( Directory.GetCurrentDirectory() );
4.FileStream class
成员 | 说明 |
Append | 追加 |
Create | 如果文件存在,首先删除 |
CreateNew | 如果文件存在,exception |
Open | 打开现有文件 |
OpenOrCreate | 打开或者是创建 |
Truncate | 文件截断为0 |
Seek |
文件指针文职移动 |
Read | 读取数据 public override int Read(byte[] array, int offset, int count);该函数读取的是byte[]类型的数据,所以需要decode |
Write | 向文件中写入数据,基本的思路char to byte,然后调用Write Method来实现将string类型写入 |
using System;
using System.Collections.Generic;
using
System.Linq;
using System.Text;
using System.IO;
namespace IOTest
{
class Program
{
static void
Main(string[] args)
{
byte[] byData = new
byte[100];
char[] chData = new char[100];
// make the FileStream
FileStream stream =
new FileStream(Directory.GetCurrentDirectory() + @"\a.txt",
FileMode.Open);
// read the date from the file
stream.Read(byData, 0, 100);
// decode the byte array
Decoder decoder =
Encoding.UTF8.GetDecoder();
decoder.GetChars(byData, 0,
byData.Length, chData, 0);
// display the message
Console.WriteLine(chData);
Console.ReadKey();
}
}
}
// write a message to a text file
using System;
using System.Collections.Generic;
using
System.Linq;
using System.Text;
using System.IO;
namespace IOTest
{
class Program
{
static void
Main(string[] args)
{
char[] msg = ("hello
world").ToCharArray();
byte[] byMsg = new byte[msg.Length];
Encoder encoder = Encoding.UTF8.GetEncoder();
int
charsUsed, bytesUsed;
bool completed;
encoder.GetBytes(msg, 0, msg.Length, byMsg, 0, true);
FileStream
stream = new FileStream(@".\a.txt", FileMode.Create);
stream.Write(byMsg, 0, byMsg.Length);
Console.ReadKey();
}
}
}
5.StreamWrite class writes string to file without converting
using System;
using System.Collections.Generic;
using
System.Linq;
using System.Text;
using System.IO;
namespace IOTest
{
class Program
{
static void
Main(string[] args)
{
string msg = "hello
c#";
FileStream stream = new FileStream(@"./a.txt",
FileMode.Create);
StreamWriter writer = new StreamWriter(stream);
writer.Write(msg);
writer.Flush();
Console.ReadKey();
}
}
}
StreamWriter负责将数据传递给FileStram class。大大简化了IO操作
6.StreamReader
using System;
using System.Collections.Generic;
using
System.Linq;
using System.Text;
using System.IO;
namespace IOTest
{
class Program
{
static void
Main(string[] args)
{
FileStream stream = new
FileStream(@".\a.txt", FileMode.Open);
StreamReader reader = new
StreamReader(stream);
string msg =
reader.ReadLine();
Console.WriteLine(msg);
Console.ReadKey();
}
}
}
未完,待续…
作者:许强1. 本博客中的文章均是个人在学习和项目开发中总结。其中难免存在不足之处 ,欢迎留言指正。 2. 本文版权归作者和博客园共有,转载时,请保留本文链接。