c# – 从StreamReader流中写入一个文件

前端之家收集整理的这篇文章主要介绍了c# – 从StreamReader流中写入一个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目前我正在尝试从WCF下载音轨,我需要一些帮助写入硬盘,如何配置流水或其他在webApp中执行此操作?
// Use Service to download stream (returns System.IO.Stream) 
Stream stream = MyService.Download(("1231"));
// ReadStream
StreamReader reader = new StreamReader(stream);
reader.ReadToEnd();

// Write this stream to a file/Hard disk
???

解决方法

Stream stream = MyService.Download(("1231"));
using (Stream s = File.Create(path))
{
    stream.CopyTo(s);
}
原文链接:https://www.f2er.com/csharp/96276.html

猜你在找的C#相关文章