C# 大文件复制边读边写

Posted

tags:

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

using (FileStream fsRead = new FileStream(@"D:\Names.txt", FileMode.Open))
            {
                using (FileStream fsWrite = new FileStream(@"d:\temp.txt", FileMode.Create))
                {
                    byte[] arr = new byte[200];
                    //记录到底读取了多少字节的数据
                    int count = 0;
                    while (fsRead.Position < fsRead.Length)
                    {
                        //每一次读取,。返回真正读取到的字节数,用count记录(最后一次读取后可能count可能会小于200)
                        count = fsRead.Read(arr, 0, arr.Length);
                        //将数组中的数据写入到指定的文件
                        fsWrite.Write(arr, 0, count);
                    }
                }
            }

 

以上是关于C# 大文件复制边读边写的主要内容,如果未能解决你的问题,请参考以下文章

JavaIO(06)文件复制

边读边体验《大数据时代》

Java-Android

Java-Android

读JDK源码,可以边读边加注释的姿势怎么样?

字符缓冲流 Day20