Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want the application to be able to browse the file system, like windows open file dialog.Is there anything likle that already made on Qt that does that and puts the file into a QFile object?
Use QFileDialog.
@QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "", tr("Files (.)"));@
this static function calls the native file dialog.