Programming Course in C# ¡Free!

File splitter

 Saturday, April 06, 2013 published by Exercises C#
Proposed exercise

Create a program to split a file (of any kind) into pieces of a certain size. ir must receive the name of the file and the size as parameters. For example, it might be used by writing:

split myFile.exe 2000

If the file "myFile.exe" is 4500 bytes long, that command would produce a file named "myFile.exe.001" 2000 bytes long, another called "myFile.exe.002" 2000 bytes long, and another named "myFile.exe.003" 500 bytes long.

Output



Solution


using System;
using System.IO;

public class SplitFile 
{