Posts Tagged ‘Batch’
I made a file splitter program with CSharp.
It’s actually not my originals, I just changed appearance.
It uses .NET Framework and weighs only 55 Kb. But I made the icon and it weighs 107 Kb. So the program weighing 162 Kb.
This program is not worth publishing here because it is not my original. If you want, you can find the source code on the web. There are quite many. I just want to say that I have learned of it.
I learned like this:
I sometimes find files named some_file.zip.001, some_file.zip.002… on the Internet. Then I must have file splitter (or file joiner) program to re-join them. In this case some_file.zip is the result.
My File Splitter uses the Windows Shell function “Copy” to recreate the original file.
In this case:
copy/b "some_file.zip.001" + "some_file.zip.002" "some_file.zip"
Save it as batch file and double click it.
Voilà!
I understand that people may use a similar method.
The next time when I find splitted files, I do not need to seek a re-join tool on my computer, but write shell command.
