One problem that I encounter quite often is splitting large text files. There's plenty of binary splitters out there. I needed something that did specific things for text files. I grew quite annoyed at not finding something, so I created a utility to help me at my day job.
This little program does the following:
- Split by number of lines
- Split by size
- Keep the first line for each new file chunk
- Has a Winforms UI
- Works on the command line
I just couldn't believe that there wasn't something out in the public that did this. The utility is done, and I use it at work regularly. I'm in the process of cleaning up the UI and finalizing the command-line parameters.
I'll make another post once I am done cleaning it up. This will be free!