I’m working on a Linux desktop application that needs to open a USB serial port, typically /dev/ttyUSB0 or /dev/ttyUSB1. I’m using QFileDialog to let the user select the file:

QFileDialog dialog(this);
dialog.setFileMode(QFileDialog::AnyFile);
dialog.setFilter(QDir::System | QDir::AllEntries | QDir::Hidden);
dialog.setViewMode(QFileDialog::Detail);
QStringList fileNames;
if (dialog.exec())
  fileNames = dialog.selectedFiles();

When I direct the FileDialog to /dev, none of the files that I can see by typing “ls /dev -al” are there. The directories show up, but for example, this file doesn’t:

$  ls -al /dev/ttyS0
crw-rw---- 1 root dialout 4, 64 2011-10-09 10:47 /dev/ttyS0

My user is a member of the dialout group:

$ groups
luke adm dialout cdrom audio video plugdev users fuse netdev bluetooth lpadmin admin sambashare

I’ve tried adding QDir::Readable and QDir::Writable and the above file still doesn’t show up. What am I doing wrong?

link|improve this question

80% accept rate
If you read my post, you will see that I already have QDir:System as an argument to setFilter(). Is there another place this should be used? – hazelnusse Oct 11 '11 at 18:52
Not sure if this will help, but from some googling around, it seems that the library qextserialport is recommended for handling serial ports in Qt applications. – Clare Macrae Oct 11 '11 at 22:44
@n.m. QDir::DefaultFilter is undefined. – hazelnusse Oct 11 '11 at 23:33
@ClareMacrae I saw that, I'll have to look in to it more closely. The qt developer forum has had no responses, so I'm inclined to think this is some sort of bug. I filed a bug report here: bugreports.qt.nokia.com/browse/QTBUG-21970 – hazelnusse Oct 11 '11 at 23:47
QDir::DefaultFilter should be defined as (-1), if not, just use -1. – n.m. Oct 12 '11 at 8:55
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.