码迷,mamicode.com
首页 > Windows程序 > 详细

C# 大文件复制边读边写

时间:2016-11-24 08:55:48      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:name   int   写入   log   复制   code   new   count   blog   

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

标签:name   int   写入   log   复制   code   new   count   blog   

原文地址:http://www.cnblogs.com/testsec/p/6095991.html

(1)
(2)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!