You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/TkEasyGUI/dialogs-py.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -363,12 +363,15 @@ def popup_get_file(
363
363
multiple_files: bool=False, # can select multiple files
364
364
file_types: Optional[FileTypeList] =None,
365
365
default_extension: Optional[str] =None,
366
+
files_delimiter: Optional[str] =";",
366
367
# pylint: disable=unused-argument
367
368
no_window: Optional[bool] =None, # for compatibility
368
369
**kw,
369
370
) -> Union[str, tuple[str], None]:
370
371
```
371
372
373
+
When selecting multiple files, the returned paths are joined using `files_delimiter` (default `";"`). Set `files_delimiter=None` to receive the raw tuple from the file dialog.
0 commit comments