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

  • SEARCH
  • Home
  • 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

Related Questions

How can I unzip a file in MacOS X Obj-C? What frameworks do I
Suppose I have two branches of a project IMClient-MacOS and IMClient-Windows, and their code
I've got the following installed through MacPorts on MacOS X 10.5.6: py25-sqlite3 @2.5.4_0 (active)
I am trying to understand how Boost memory mapped files work. The following code
gcc 4.4.2 c89 I have the following code. #if defined ( __linux__ ) log_msg(stderr,
Can MacOS be run in a VMWare type environment on Windows?
Is it possible in MacOS X to send a mouse click to a specific
My son has a MacOS 9 box to which he is sending remote AppleEvents
How do you install Boost on MacOS? Right now I can't find bjam for
Is there any 256 color xterm for MacOS x? Like the one described below?

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.