I have my FileDialog here:
Qt Code:
QFileDialog box; QStringList fileNames; if (box.exec()) { fileNames = box.selectedFiles(); }To copy to clipboard, switch view to plain text mode
It works on a button click just fine. Am I able to streamline what it looks like? I'm not interested in having the user open or choose files but rather just view that files are present. Really what would be perfect would be a windows explorer type window where I could view files / not only the directories. Is there anything out there for what I've described? thanks!
Bookmarks