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!
|
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 |
|||
|
|
Edit: actually it's a little more complicated:
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:
|
|||||||||||||||||||
|
|
Let's try and rewrite this simple C call as C++:
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. |
|||
|
|
|
All C functions are also C++ functions. If you need a |
|||
|
|
|
You'll need to just write a little wrapper.
|
|||||
|
|
std::string cwd = getcwd();and let the constructor do it's job? – LiraNuna Feb 4 '10 at 20:58