C# 读取2进制文件(bin文件)

读取2进制文件采用下列方式

using (BinaryReader reader = new BinaryReader(File.Open(path, FileMode.Open)))
{
 long fileLength = reader.BaseStream.Length; // 获取文件长度
 byte[] data = reader.ReadBytes(400);  //读取文件中前400个字节
}

你可能感兴趣的:(C#,文件操作,c#)