vote up 0 vote down star

While, compiling a package, written in C++ on RHEL 5.0. I am getting the following error.

> error: nocreate is not a member of std::ios

The source-code corresponds to:

ifstream tempStr(argv[4],ios::in|ios::nocreate);


I have tried

#g++ -O -Wno-deprecated <file.cpp> -o <file>

as well as:

#g++ -O -o <file>

Please suggest a solution.

flag

54% accept rate

3 Answers

vote up 2 vote down check

ios::nocreate is not part of standard C++ - what are you expecting it to do?

Edit: From a Google, it seems like it was intended to prevent the file being created if it doesn't already exist. This is the default for ifstreams anyway, so you can just say:

ifstream f( filename );
if ( ! f.is_open() ) {
    // open failed - probably because infput file does not exist  
}
link|flag
I am building an open source package, and this error is being thrown up. Not much ssupport is available by them Hence wanted to know. – Mohit Nanda Jun 30 at 10:28
vote up 2 vote down

Opening a file in read mode (ios::in) won't create it if it doesn't exist. You can just leave off the non-standard nocreate. And since in is the default for ifstream:

ifstream tempStr (argv[4]);
link|flag
vote up 0 vote down

G'day,

Isn't nocreate a non-standard extension?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.