PDA

View Full Version : How to open a destination folder in Windows Explorer?



IndikaU
26th September 2011, 12:32
Hi,

I want to open a destination folder in Windows explorer from Qt. Does anyone how to do this in code?

Thanks,
Indika...

cincirin
26th September 2011, 12:50
QProcess::startDetached("explorer yourPath")

stampede
26th September 2011, 13:08
QDesktopServices::openUrl( QUrl::fromLocalFile(path) );

IndikaU
26th September 2011, 15:14
Thanks for the replies.

Indika...