-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplitnjoin.cs
182 lines (148 loc) · 5.86 KB
/
splitnjoin.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.IO.Compression;
using System.Security.AccessControl;
using System.Xml;
namespace FileSplitter
{
public partial class splitnjoin : Form
{
public splitnjoin(string name)
{
InitializeComponent();
}
private void SplitFile(string InputPath, string OutputPath, int OutputFiles)
{
// Store the file in a byte array
Byte[] byteSource = System.IO.File.ReadAllBytes(InputPath);
// Get file info
FileInfo fiSource = new FileInfo(txtSourceFile.Text);
// Calculate the size of each part
int partSize = (int)Math.Ceiling((double)(fiSource.Length / OutputFiles));
// The offset at which to start reading from the source file
int fileOffset = 0;
// Stores the name of each file part
string currPartPath;
// The file stream that will hold each file part
FileStream fsPart;
// Stores the remaining byte length to write to other files
int sizeRemaining = (int)fiSource.Length;
// Loop through as many times we need to create the partial files
for (int i = 0; i < OutputFiles; i++)
{
// Store the path of the new part
currPartPath = OutputPath + "\\" + fiSource.Name + "." + String.Format(@"{0:D4}", i) + ".part";
// A filestream for the path
if (!File.Exists(currPartPath))
{
fsPart = new FileStream(currPartPath, FileMode.CreateNew);
// Calculate the remaining size of the whole file
sizeRemaining = (int)fiSource.Length - (i * partSize);
// The size of the last part file might differ because a file doesn't always split equally
if (sizeRemaining < partSize)
{
partSize = sizeRemaining;
}
fsPart.Write(byteSource, fileOffset, partSize);
fsPart.Close();
fileOffset += partSize;
//}
//FileStream sourceFileStream = File.OpenRead(txtSourceFile.Text);
//FileStream destFileStream = File.Create(currPartPath);
//GZipStream compressingStream = new GZipStream(destFileStream, CompressionMode.Compress);
//byte[] bytes = new byte[2048];
//int bytesRead;
//while ((bytesRead = sourceFileStream.Read(bytes, 0, bytes.Length)) != 0)
//{
// compressingStream.Write(bytes, 0, bytesRead);
//}
//sourceFileStream.Close();
//compressingStream.Close();
//destFileStream.Close();
}
}
}
private void JoinFiles(string FolderInputPath, string FileOutputPath)
{
try
{
DirectoryInfo diSource = new DirectoryInfo(FolderInputPath);
FileStream fsSource = new FileStream(FileOutputPath, FileMode.Append);
foreach (FileInfo fiPart in diSource.GetFiles(@"*.part"))
{
Byte[] bytePart = System.IO.File.ReadAllBytes(fiPart.FullName);
fsSource.Write(bytePart, 0, bytePart.Length);
}
fsSource.Close();
}
catch (Exception ex)
{
}
}
private void btnBrowseFolder_Click(object sender, EventArgs e)
{
try
{
if (openFolder.ShowDialog() == DialogResult.OK)
{
txtSourceFolder.Text = openFolder.SelectedPath;
}
}
catch (Exception ex)
{
}
}
private void btnJoin_Click(object sender, EventArgs e)
{
try
{
if (saveOutput.ShowDialog() == DialogResult.OK)
{
JoinFiles(txtSourceFolder.Text, saveOutput.FileName);
string folderpath = txtSourceFolder.Text;
MessageBox.Show("Merge successful");
}
}
catch (Exception ex)
{
}
}
private void btnBrowseFile_Click(object sender, EventArgs e)
{
try
{
if (openSource.ShowDialog() == DialogResult.OK)
{
txtSourceFile.Text = openSource.FileName;
}
}
catch (Exception ex)
{
}
}
private void btnSplit_Click(object sender, EventArgs e)
{
try
{
if (saveToFolder.ShowDialog() == DialogResult.OK)
{
SplitFile(txtSourceFile.Text, saveToFolder.SelectedPath, (int)numOutputs.Value);
string folderpath = saveToFolder.SelectedPath;
MessageBox.Show("Split successful");
}
}
catch (Exception ex)
{
}
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}