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

Ask A Question

Stats

  • Questions 217k
  • Answers 217k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Just add this $('ul.list').bind('mousedown', function(e) { e.stopPropagation(); }); This will… May 12, 2026 at 11:25 pm
  • Editorial Team
    Editorial Team added an answer It's difficult to construct a Java array of primitives in… May 12, 2026 at 11:25 pm
  • Editorial Team
    Editorial Team added an answer I do not think that Cocoa and the old EventRecord… May 12, 2026 at 11:25 pm

Related Questions

I have an XML file of size 31 GB. I need to find the
I have recently started using CAML.NET IntelliSense for SharePoint with Visual Studio 2008; which
I have a large xml file (approx. 10 MB) in following simple structure: <Errors>
I have a large xml file and want to get a defined number of

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.