For example I have the string "root/data/home/file1.txt" I would like to get "root/data/home" Is there a convenient function in C++ that allows me to do this or should I code it myself?
|
feedback
|
|
You can do basic string manipulation, i.e.
or take a third option like Boost.Filesystem:
| |||||
feedback
|
|
If you're on a POSIX system, try dirname(3). | |||
|
feedback
|
|
There's certainly no convenient function in the language itself. The string library provides find_last_of, which should do well. | |||
|
feedback
|
|
This is rather platform-dependent. For example, Windows uses The Windows-specific API is | |||
|
feedback
|