PDA

View Full Version : concatenating path QStrings



rbp
17th December 2008, 04:57
Is there a Qt function to append a file path to a directory? Something equivalent to os.path.join() in python. I've looked at the QFile and QDir API's but didn't notice anything useful.

caduel
17th December 2008, 08:01
QDir::filePath()?

rbp
19th December 2008, 04:46
oh thanks. I assumed that did the same as QFileInfo::filePath().