Like os.scandir(), but generates (entry, name, path) tuples.
(path)
| 354 | |
| 355 | @staticmethod |
| 356 | def scandir(path): |
| 357 | """Like os.scandir(), but generates (entry, name, path) tuples. |
| 358 | """ |
| 359 | raise NotImplementedError |
| 360 | |
| 361 | @staticmethod |
| 362 | def concat_path(path, text): |
no outgoing calls