enthought / enthought/pyface

Pyface filedialog does not use native file dialog and (thus) cannot see remote path (UNC path)

Open
#456 5 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
115
Forks
54
PR merge metrics
No merged PRs in 30d

Description

I tested PyQt4 QFileDialog, it uses the native FileDialog in both macOS and Windows 10 .
Below is how I test PyQt4 FileDialog:

```
from PyQt4 import QtGui
import sys

QtGui.QApplication(sys.argv)
QtGui.QFileDialog.getOpenFileName()
sys.exit(app.exec_())
```

Below is how I use pyface FileDialog:

```
from pyface.api import FileDialog, OK
dlg = FileDialog(action='open')
if dlg.open() == OK:
pass
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.