This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

O_CREAT |?O_EXCL with ofstream


 Hi,

I used to use:
 int fd = open("file", O_CREAT |?O_EXCL);
 ofstream os(fd);
but ofstream::ofstream(int fd) has also been deprecated (sigh), so
I see no way anymore to atomically ensure that a file was not already
existing when creating a new one.
I've searched everywhere on the Web, and I could only find a
reference of a ios_base::noreplace which does not seem to exist.

So how do I get an ofstream while ensuring atomicity? (O_CREAT |?O_EXCL behaviour)
Any clue?

 Herve

-- 
 _
(°=  Hervé Eychenne
//)  Homepage:          http://www.eychenne.org/
v_/_ WallFire project:  http://www.wallfire.org/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]