Hi Forum,
I am using a QFileDialog::getOpenFileName() to open files in my application.
Its working fine for windows (XP).But there are two problems in linux (Ubuntu)
1) If the files I am selecting are in current working directory (that we pass as a parameter ), then only its working. And not for files in any other location.
2)passing an url for the file(if the file is in a server) is working in windows but not in linux.
Here is my code:
accessedPath,
tr("My App Files (*.plist | *.xml)");
QString fileName = QFileDialog::getOpenFileName(this, tr("Open App"),
accessedPath,
tr("My App Files (*.plist | *.xml)");
To copy to clipboard, switch view to plain text mode
In, linux for all above cases, the open button is just staying disabled.
Would you please, suggest me the possible solution foo this problem?
Thanks and Regards
~nemat
Bookmarks