时间:2021-05-20
本文实例讲述了C#文件分割的方法。分享给大家供大家参考。具体如下:
1. 小文件分割(适用于小于等于64M的文件):
using System;using System.IO;string filetosplit=@"C:\temp\data.bin";string targetpath=@"D:\store";FileStream fsr = new FileStream(filetosplit, FileMode.Open, FileAccess.Read);long FileLength=fsr.Length;byte[] btArr = new byte[FileLength];fsr.Read(btArr, 0, (int)FileLength);fsr.Close();int splitcount=3;long PartLength=FileLength/splitcount+FileLength%splitcount;int nCount=(int)Math.Ceiling((double)FileLength/PartLength);string strFileName=Path.GetFileName(filetosplit);long byteCount=0;for(int i=1;i<=nCount;i++,byteCount=(i<nCount?byteCount+PartLength:FileLength-PartLength)){ FileStream fsw = new FileStream(targetpath + Path.DirectorySeparatorChar+ strFileName +i, FileMode.Create, FileAccess.Write); fsw.Write(btArr, (int)byteCount, (int)(i<nCount?PartLength:FileLength-byteCount)); fsw.Flush(); fsw.Close();}2. 大文件分割(适用于大于64M的文件)
using System;using System.IOstring filetosplit=@"C:\temp\data.bin";string targetpath=@"D:\store";FileStream fsr = new FileStream(filetosplit, FileMode.Open, FileAccess.Read);long FileLength=fsr.Length;byte[] btArr = new byte[FileLength];fsr.Read(btArr, 0, (int)FileLength);fsr.Close();int splitcount=3;long PartLength=FileLength/splitcount+FileLength%splitcount;int nCount=(int)Math.Ceiling((double)FileLength/PartLength);string strFileName=Path.GetFileName(filetosplit);long byteCount=0;for(int i=1;i<=nCount;i++,byteCount=(i<nCount?byteCount+PartLength:FileLength-PartLength)){ FileStream fsw = new FileStream(targetpath + Path.DirectorySeparatorChar+ strFileName +i, FileMode.Create, FileAccess.Write); long bc=byteCount; long PartCount=i<nCount?PartLength:FileLength-bc; int PartBufferCount=(int)(PartCount<int.MaxValue/32?PartCount:int.MaxValue/32); int nc=(int)Math.Ceiling((double)PartCount/PartBufferCount); for(int j=1;j<=nc;j++,bc=(j<nCount?bc+PartBufferCount:PartCount-PartBufferCount)) fsw.Write(btArr, (int)bc, (int)(j<nc?PartBufferCount:PartCount-bc)); fsw.Flush(); fsw.Close();}fsr.Close();希望本文所述对大家的C#程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文具体给出了C#常用的文件操作方法,包括C#追加文件,C#拷贝文件,C#删除文件,C#移动文件,C#创建目录。(1)C#追加文件StreamWritersw=
详解C#编程获取资源文件中图片的方法本文主要介绍C#编程获取资源文件中图片的方法,涉及C#针对项目中资源文件操作的相关技巧,以供借鉴参考。具体内容如下:例子:u
在C#的字符串,其中有许多空格,现要求是把多余的空格去除保留一个。原理是使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries,然
本文实例讲述了C#简单遍历指定文件夹中所有文件的方法。分享给大家供大家参考,具体如下:C#遍历指定文件夹中的所有文件:DirectoryInfoTheFolde
本文实例讲述了C#逐行读取文件的方法。分享给大家供大家参考。具体如下:这里使用C#逐行读取文件,对于大文件的读取非常有用。StreamReadersr=newS