Python Forum
What is meant by "truncates the file" RE file.open(w+b)?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What is meant by "truncates the file" RE file.open(w+b)?
#4
r+b is how I write to a file without zeroing the part between the end of my writes and the end of the file, or any other parts, correct?

When open("file,"w") is chosen, does it retain the file length and zero out everything, or does it set the file length to zero as well?

If I wanted to write to a file in "insert mode", I'd need to open it as read elsewhere, copy everything up to my write location into a separate new write-flagged file, append my changes, and then copy the rest of the read-flagged file into the write-flagged file. Is this correct?

Feels like an odd choice. Where can I find more detailed information, is there a good book on Python I/O you recommend?
Reply


Messages In This Thread
RE: What is meant by "truncates the file" RE file.open(w+b)? - by MysticLord - Sep-01-2020, 07:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Open/save file on Android frohr 0 414 Jan-24-2024, 06:28 PM
Last Post: frohr
  file open "file not found error" shanoger 8 1,412 Dec-14-2023, 08:03 AM
Last Post: shanoger
  Need to replace a string with a file (HTML file) tester_V 1 854 Aug-30-2023, 03:42 AM
Last Post: Larz60+
  How can i combine these two functions so i only open the file once? cubangt 4 981 Aug-14-2023, 05:04 PM
Last Post: snippsat
  How can I change the uuid name of a file to his original file? MaddoxMB 2 1,065 Jul-17-2023, 10:15 PM
Last Post: Pedroski55
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 1,216 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone
  I cannot able open a file in python ? ted 5 3,824 Feb-11-2023, 02:38 AM
Last Post: ted
  testing an open file Skaperen 7 1,518 Dec-20-2022, 02:19 AM
Last Post: Skaperen
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,216 Dec-15-2022, 04:32 PM
Last Post: Larz60+
Photo Making Zip file of a file and Directory Nasir 2 1,097 Oct-07-2022, 02:01 PM
Last Post: Nasir

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020