首页 > 代码库 > C# 大文件复制边读边写

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# 大文件复制边读边写