C#文件流写入方法

Posted Reysl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#文件流写入方法相关的知识,希望对你有一定的参考价值。

stream为服务端接收的文件流
var bytes = new byte[stream.Length];
stream.Read(bytes, 0, bytes.Length);
// 设置当前流的位置为流的开始
stream.Seek(0, SeekOrigin.Begin);


var pathHead = HttpContext.Current.Request.PhysicalApplicationPath;
if (!Directory.Exists(path))
   Directory.CreateDirectory(path);
var resultPath = path + "文件.后缀";
var fileStream = new FileStream(resultPath, FileMode.Create, FileAccess.ReadWrite);
//文件写入
fileStream.Write(bytes, 0, bytes.Length);
fileStream.Flush();
fileStream.Close();

  

以上是关于C#文件流写入方法的主要内容,如果未能解决你的问题,请参考以下文章

记录C#常用的代码片段

为 AWS C# S3 SDK 使用内存流而不是文件流而不将完整文件写入 S3

是否可以动态编译和执行 C# 代码片段?

C#做一个写txt文件流的测试,为什么配置低的机器写入的还快

C# 将大文件写入网络流的问题。。。

C#怎样将数组作为文件流保存起来