using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
FileSystemWatcher fsw = new FileSystemWatcher();
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
this.textBox2.Text = "";
}
private void button3_Click(object sender, EventArgs e)
{
try
{
byte[] arrFile = null; //先定义一个byte数组bai
using (FileStream fs = new FileStream(this.textBox3.Text, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) //path是文件的路径
{
arrFile = new byte[fs.Length];//定义这个byte[]数组的长度 为文件的length
fs.Read(arrFile, 0, arrFile.Length);//把fs文件读入到arrFile数组中,0是指偏移量,从0开始读,arrFile.length是指需要读的长度,也就是整个文件的长度
}
if (arrFile == null)
return;
//arrFile =new byte[]{ 2,3,4,5,6};
List<byte[]> listBytes = new List<byte[]>();
#region 文件切包
System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatc
C# FileSystemWatcher 文件监视以及文件分包后组合再存储
最新推荐文章于 2024-08-22 16:41:57 发布
本文详细介绍了如何使用C#的FileSystemWatcher类来实时监控文件系统变化,当文件达到一定大小时进行分包处理,并在后续过程中如何将这些分包文件正确地组合还原,以实现高效的数据存储和管理。
摘要由CSDN通过智能技术生成