文件 字节流

2、文件读取字节流

FileStream fs = new FileStream(filename,FileMode.Open,FileAccess.Read);

byte[] infbytes = new byte[(int)fs.Length];

fs.Read(infbytes, 0, infbytes.Length);

fs.Close();

2、将字节流写入文件

FileStream fs = new FileStream("...",FileMode.Create,FileAccess.Write);

fs.Write(infbytes, 0, inf.Length);

fs.Close();

posted @ 2023-01-14 18:53  pengde  阅读(17)  评论(0编辑  收藏  举报