1、读取文件,并转换为字节流
FileStream fs = new FileStream(filename,FileMode.Open,FileAccess.Read);
byte[] infbytes = new byte[(int)fs.Length];
fs.Read(infbytes, 0, infbytes.Length);
fs.Close();
return infbytes;
2、将字节流写入文件 FileStream fs = new FileStream("D:\inf.dlv",FileMode.Create,FileAccess.Write); fs.Write(infbytes, 0, inf.Length); fs.Close();

  

3.将字节流转换成文件流
Stream stream = new MemoryStream(bytes); 
return stream; 

 

相关文章:

  • 2021-07-30
  • 2021-12-01
  • 2022-12-23
  • 2021-08-10
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-08
  • 2022-12-23
  • 2022-01-13
  • 2021-11-07
  • 2021-11-26
  • 2022-01-18
  • 2022-12-23
相关资源
相似解决方案