用FileStream加byte[]字节数组缓冲区读写文件
Posted 影落明湖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用FileStream加byte[]字节数组缓冲区读写文件相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { //思路:就是现将要赋值的多媒体文件读取出来,然后希望如到你制定的位置 string source = @"D:\教程\1.txt"; string target = @"D:\教程\2.txt"; CopyFile(source, target); Console.WriteLine("Copy Complete!"); Console.ReadKey(); } public static void CopyFile(string source,string target) { //1。我们创建一个负责读取的流 fsRead using(FileStream fsRead = new FileStream(source,FileMode.OpenOrCreate,FileAccess.Read)) //使用using语句减免代码,FileStream(src,mode,acs),节省Close() & Dispose() { //2.创建一个负责写入的流 fsWrite using(FileStream fsWrite = new FileStream(target,FileMode.OpenOrCreate,FileAccess.Write)) //使用using语句减免代码,FileStream(src,mode,acs), 节省Close() & Dispose(),两个using嵌套,内部先Close() & Dispose() { byte[] buffer = new byte[1024*1024*5]; //因为文件可能会比较大,所以我们在读取的时候,应该通过一个循环去读取 while (true)//循环去读取写入 { //返回本次实际读取到的字节数 int r = fsRead.Read(buffer, 0, buffer.Length); //读取 //如果返回一个0,也就意味着什么都没有读取到,表示读取完了 if (r == 0) { break; } fsWrite.Write(buffer,0,r); //写入 } } } } } }
以上是关于用FileStream加byte[]字节数组缓冲区读写文件的主要内容,如果未能解决你的问题,请参考以下文章