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 289329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:53:50+00:00 2026-05-12T05:53:50+00:00

On MacOS with gcc4.2 should the following code create a new file if none

  • 0

On MacOS with gcc4.2 should the following code create a new file if none exists?

#include <fstream>

void test () {
    std::fstream file ("myfile.txt", std::ios::in | std::ios::out);
}

By my logic it should, either open up an existing file for read/writing or create a new empty file for read/writing. But the behaviour I get is that it will not create a new file if ‘myfile.txt’ does not exist.

How do I get the same behavior as fopen(“myfile.txt”, “r+”); ?

Furthermore,

#include <fstream>

void test () {
    std::ofstream file ("myfile.txt", std::ios::in | std::ios::out);
}

Will always truncate an existing file…

Is this the standard behavior?

  • 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-12T05:53:50+00:00Added an answer on May 12, 2026 at 5:53 am

    First of all, I have no idea why you think that fopen("r+") creates a file if it doesn’t exist – according to ISO C & C++, it does not, it just opens an existing file for read/write. If you want to create a file with fopen, you use "w+".

    For streams, you just specify trunc:

    std::ofstream file ("myfile.txt",
        std::ios::in | std::ios::out | std::ios::trunc);
    

    However, both this and fopen("w+") will truncate the file. There’s no standard way to open the file without truncating if it exists, but create it if it does not exist in a single call. At best you can try to open, check for failure, and then try to create/truncate; but this may lead to a race condition if file is created by another process after the check but before truncation.

    In POSIX, you can use open with O_CREAT and without O_TRUNC.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I think I like your way. The cmake mailing list… May 12, 2026 at 7:02 am
  • Editorial Team
    Editorial Team added an answer If you're looking for a simple-ish solution, may I suggest… May 12, 2026 at 7:02 am
  • Editorial Team
    Editorial Team added an answer First, a disclaimer: What I think you're asking about is… May 12, 2026 at 7:02 am

Related Questions

I was writing a function to figure out if a given system of linear
I've got the following installed through MacPorts on MacOS X 10.5.6: py25-sqlite3 @2.5.4_0 (active)
Is there a flag for gcc such that conversions from a long to a
Here is a piece of code: #include <stdio.h> #include <stdarg.h> void MyPrintf(char const* format,
I'm porting a medium-sized C++ project from Visual Studio 2005 to MacOS, XCode /

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.