Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 290697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:01:17+00:00 2026-05-12T06:01:17+00:00

I have a large xml file (40 Gb) that I need to split into

  • 0

I have a large xml file (40 Gb) that I need to split into smaller chunks. I am working with limited space, so is there a way to delete lines from the original file as I write them to new files?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T06:01:18+00:00Added an answer on May 12, 2026 at 6:01 am

    Say you want to split the file into N pieces, then simply start reading from the back of the file (more or less) and repeatedly call truncate:

    Truncate the file’s size. If the optional size argument is present, the file is truncated to (at most) that size. The size defaults to the current position. The current file position is not changed. …

    import os
    import stat
    
    BUF_SIZE = 4096
    size = os.stat("large_file")[stat.ST_SIZE]
    chunk_size = size // N 
    # or simply set a fixed chunk size based on your free disk space
    c = 0
    
    in_ = open("large_file", "r+")
    
    while size > 0:
        in_.seek(-min(size, chunk_size), 2)
        # now you have to find a safe place to split the file at somehow
        # just read forward until you found one
        ...
        old_pos = in_.tell()
        with open("small_chunk%2d" % (c, ), "w") as out:
            b = in_.read(BUF_SIZE)
            while len(b) > 0:
                out.write(b)
                b = in_.read(BUF_SIZE)
        in_.truncate(old_pos)
        size = old_pos
        c += 1
    

    Be careful, as I didn’t test any of this. It might be needed to call flush after the truncate call, and I don’t know how fast the file system is going to actually free up the space.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large XML file that I need to parse so I
I have a large xml file (1Gb). I need to make many queries on
So I have this pretty large XML file (40MB) that I'll have to repeatedly
I have a large XML file (~18MB). Apparently there is a tag somewhere in
I am pulling down a large XML file and I have no control over
I have a large xml document that needs to be processed 100 records at
I'm hand-coding Linq to SQL Entities and have a large XML column that I
I have rather large input XML files that must be converted to a given
Question We have a large number of xml configuration files that we want merged
I need to read a large XML document from the network and split it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.