This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project.
FW: iostream implementaion incomplete
- To: "libstdc++" <libstdc++ at sourceware dot cygnus dot com>
- Subject: FW: iostream implementaion incomplete
- From: "Shiv Shankar Ramakrishnan" <ShivShanks at MailandNews dot com>
- Date: Mon, 10 Apr 2000 14:20:41 +0530
|You are right that it's non-standard, but libstdc++-2 supported it.
|Is there a standard-conforming method for opening a file stream that
|fails if the file doesn't already exist?
You can get a similar affect (in a way) by enabling exceptions so that
an exception is thrown when a file doesn't exist. So you could then
immediately catch it and do something else. I don't know whether this
would suffice in your case though.
One caveat though - it might even be risky to do this if the code isn't
exception safe.
Thanks,
Shiv