https://bugs.documentfoundation.org/show_bug.cgi?id=169176
Werner Tietz <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Werner Tietz <[email protected]> --- its simple enough with pure python instead BASIC & SF! ``` from pathlib import Path def test_filelist(*_): directory = Path.home() / "Documents" #for example for p in directory.glob("*.*"): print(p.name) ``` -- You are receiving this mail because: You are the assignee for the bug.
