Is it possible to split a file? For example you have huge wordlist, I want to split it so that it becomes more than one file. How is this possible?
feedback
|
|
This one splits a file up by newlines and writes it back out. You can change the delimiter easily. This can also handle uneven amounts as well, if you don't have a multiple of splitLen lines (20 in this example) in your input file.
| |||||
feedback
|
|
Sure it's possible:
| |||||
|
feedback
|
|
Easily. I'd suggest iterating over the file and writing to a new file as necessary, then deleting the original. This answer is fairly intuitive to me, though, so I'm not sure if it's insufficient, or if perhaps it needs more clarification. | |||
|
feedback
|
|
Solution to split binary files into chapters .000, .001, etc.:
| |||
|
feedback
|
|
Sure, just read in the file and write out some of the words to each different output file. It's possible to do this in any programming language. | |||
|
feedback
|