How to pop out a folder explorer with a cursor on the specific file in Windows OS?
-
I want to realize a function like what WinRAR does on Win OS: when finished the Unzip job, the folder explorer pop out and the cursor show which file or folder was just created.
Thx for your help. -
I want to realize a function like what WinRAR does on Win OS: when finished the Unzip job, the folder explorer pop out and the cursor show which file or folder was just created.
Thx for your help.@MartinChan-0
basically this can be done by callingexplorer.exe /select,"C:\file.txt"(untested)
QProcess::startDetached("explorer.exe", QStringList() << "/select,\"C:\\file.txt\""); -
@MartinChan-0
basically this can be done by callingexplorer.exe /select,"C:\file.txt"(untested)
QProcess::startDetached("explorer.exe", QStringList() << "/select,\"C:\\file.txt\"");@raven-worx Thanks for your help~~~