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?

link|improve this question

0% accept rate
This is certainly possible. If you want useful answers, you may want to provide some useful details. – EBGreen Feb 13 '09 at 16:08
do you want to do it with python? how is this file structured? is it a text file? – Paolo Tedesco Feb 13 '09 at 16:10
feedback

5 Answers

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.

splitLen = 20         # 20 lines per file
outputBase = 'output' # output.1.txt, output.2.txt, etc.

# This is shorthand and not friendly with memory
# on very large files (Sean Cavanagh), but it works.
input = open('input.txt', 'r').read().split('\n')

at = 1
for lines in range(0, len(input), splitLen):
    # First, get the list slice
    outputData = input[lines:lines+splitLen]

    # Now open the output file, join the new slice with newlines
    # and write it out. Then close the file.
    output = open(outputBase + str(at) + '.txt', 'w')
    output.write('\n'.join(outputData))
    output.close()

    # Increment the counter
    at += 1
link|improve this answer
Might mention that for REALLY BIG FILES, open().read() chews a lot of memory and time. But mostly it's okay. – Sean Cavanagh Feb 13 '09 at 16:21
Oh, I know. I just wanted to throw together a working script quickly, and I normally work with small files. I end up with shorthand like that. – sli Feb 15 '09 at 21:06
feedback

Sure it's possible:

open input file
open output file 1
count = 0
for each line in file:
    write to output file
    count = count + 1
    if count > maxlines:
         close output file
         open next output file
         count = 0
link|improve this answer
Don't forget to reset your count after opening the new file... – Sean Cavanagh Feb 13 '09 at 16:20
right, or test count mod maxlines. – Charlie Martin Feb 13 '09 at 19:05
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.

link|improve this answer
feedback

Solution to split binary files into chapters .000, .001, etc.:

FILE = 'scons-conversion.7z'

MAX  = 500*1024*1024 # 500Mb  - max chapter size
BUF  = 50*1024*1024  # 50GB   - memory buffer size

chapters = 0
uglybuf  = ''
with open(FILE, 'rb') as src:
  while True:
    tgt = open(FILE+'.%03d' % chapters, 'w')
    written = 0
    while written < MAX:
      tgt.write(uglybuf)
      tgt.write(src.read(min(BUF, MAX-written)))
      written += min(BUF, MAX-written)
      uglybuf = src.read(1)
      if len(uglybuf) == 0:
        break
    tgt.close()
    if len(uglybuf) == 0:
      break
    chapters += 1
link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.