Does C++ have any equivalent to python\'s function os.path.join? Basically, I\'m looking for something that combines two (or more) parts of a file path so that
os.path.join
If you want to do this with Qt, you can use QFileInfo constructor:
QFileInfo
QFileInfo fi( QDir("/tmp"), "file" ); QString path = fi.absoluteFilePath();