Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I see C's getcwd via: man 3 cwd

I suspect C++ has a similar one, that could return me a std::string .

If so, what is it called, and where can I find it's documentation?

Thanks!

share|improve this question
2  
Why not just use std::string cwd = getcwd(); and let the constructor do it's job? – LiraNuna Feb 4 '10 at 20:58
won't that leak memory? – anon Feb 4 '10 at 21:03
1  
Does getcwd() leak memory if you don't free it? If so, then you should free it after creating the string, as opposed to freeing it when you no longer need it, and that's more convenient. If not, then initializing the string won't leak memory. – David Thornley Feb 4 '10 at 21:29

5 Answers

up vote 8 down vote accepted

Ok, I'm answering even though you already have accepted an answer.

An even better way than to wrap the getcwd call would be to use boost::filesystem, where you get a path object from the current_path() function. The Boost filesystem library allows you to do lots of other useful stuff that you would otherwise need to do a lot of string parsing to do, like checking if files/directories exist, get parent path, make paths complete etcetera. Check it out, it is portable as well - which a lot of the string parsing code one would otherwise use likely won't be.

share|improve this answer
Of course, in some situations it may not be worth including the boost::filesystem library just to get the current working directory. Though, if s/he is doing lots of filesystem stuff, then they may as well use boost for all of it. – root.ctrlc Jul 27 '12 at 19:51

std::string's constructor can safely take a char* as a parameter. Surprisingly there's a windows version too.

Edit: actually it's a little more complicated:

std::string get_working_path()
{
   char temp[MAXPATHLEN];
   return ( getcwd(temp, MAXPATHLEN) ? std::string( temp ) : std::string("") );
}

Memory is no problem -- temp is a stack based buffer, and the std::string constructor does a copy. Probably you could do it in one go, but I don't think the standard would guarantee that.

About memory allocation, via POSIX:

The getcwd() function shall place an absolute pathname of the current working directory in the array pointed to by buf, and return buf. The pathname copied to the array shall contain no components that are symbolic links. The size argument is the size in bytes of the character array pointed to by the buf argument. If buf is a null pointer, the behavior of getcwd() is unspecified.

share|improve this answer
2  
is the char * automatigally freed? or does this give me a memory leak? – anon Feb 4 '10 at 21:01
1  
Both this answer and Liranuna's comment use getcwd as a no-argument function, yet the documentation I see shows two parameters. Am I reading the wrong docs? – Rob Kennedy Feb 4 '10 at 21:01
@anon no, the resulting char* is malloc ed and should be free d after creating a std::string from it. – Bill Feb 4 '10 at 21:06
1  
@Kornel Please use MAXPATHLEN instead of your magic number(128) ;) – AraK Feb 4 '10 at 21:06
1  
@Bill, that's a non-standard extension, as far as I can tell. Linux, Mac, and Windows all implement it, which may or may not be "portable enough." – Rob Kennedy Feb 4 '10 at 21:09
show 8 more comments

Let's try and rewrite this simple C call as C++:

std::string get_working_path()
{
    char temp [ PATH_MAX ];

    if ( getcwd(temp, PATH_MAX) == 0) 
        return std::string ( temp );

    int error = errno;

    switch ( error ) {
        // EINVAL can't happen - size argument > 0

        // PATH_MAX includes the terminating nul, 
        // so ERANGE should not be returned

        case EACCES:
            throw std::runtime_error("Access denied");

        case ENOMEM:
            // I'm not sure whether this can happen or not 
            throw std::runtime_error("Insufficient storage");

        default: {
            std::ostringstream str;
            str << "Unrecognised error" << error;
            throw std::runtime_error(str.str());
        }
    }
}

The thing is, when wrapping a library function in another function you have to assume that all the functionality should be exposed, because a library does not know what will be calling it. So you have to handle the error cases rather than just swallowing them or hoping they won't happen.

It's usually better to let the client code just call the library function, and deal with the error at that point - the client code probably doesn't care why the error occurred, and so only has to handle the pass/fail case, rather than all the error codes.

share|improve this answer

All C functions are also C++ functions. If you need a std::string, just create one from the char* that getcwd gets for you.

share|improve this answer

You'll need to just write a little wrapper.

std::string getcwd_string( void ) {
   char buff[PATH_MAX];
   getcwd( buff, PATH_MAX );
   std::string cwd( buff );
   return cwd;
}
share|improve this answer
You should use PATH_MAX instead of a magic number. – Bill Feb 4 '10 at 21:08
@Bill thanks, learn something new every day. – Brian Gianforcaro Feb 4 '10 at 21:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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