Can I use Qt to pick/open files on shared folder? I've tried to use QFileDialog, but it seems that there is no "network" category, as in standrd windows explorer.

link|improve this question

62% accept rate
I have an app that uses QFileDialog::getOpenFileName() and it does show Network in the dialog. This is in Windows 7 x64. Maybe it's a Windows configuration issue? – Stephen Chu Jan 27 '11 at 15:24
The same thing here, Qt 4.7.1, Windows 7 x86, works fine. There is something wrong either with the OS, or maybe because some old version of Qt is used? – Sergey Tachenov Jan 27 '11 at 15:27
feedback

1 Answer

up vote 0 down vote accepted

You need to specify which version of Qt you are using. Versions 4.7+ have support for native file dialogs and use them by default. See the accepted answer here:

In previous versions, there was no easy way to show network shares in the QFileDialog on Windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.