I am trying to list all alias files in Mac Osx using the Qt. I am using the following function:
QString QDir::fromNativeSeparators ( const QString & pathName )
By specifying the relative path to a directory. It lists only the normal files and skips the aliases.
Please let me know if there is a better way to list both the normal and alias files using Qt.
Use QDirIterator, Qt documentation is here:
http://doc.qt.io/qt-4.8/qdiriterator.html