FindFiles
Returns files of the input directory.
Syntax
C++
Python
def FindFiles( inStartDirectory: str, /, *, inMask: str = "\"*\"", inSubdirs: bool = False, inSortingOrder: FileSortingOrder | None = None ) -> ( outFilePaths: list[str], outFileNames: list[str], outFound: bool )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inStartDirectory | str | Input directory | |
![]() |
inMask | str | "\"*\"" | Wildcard pattern |
![]() |
inSubdirs | bool | False | Read subdirectories |
![]() |
inSortingOrder | FileSortingOrder | None | None | Sorting order |
![]() |
outFilePaths | list[str] | File paths | |
![]() |
outFileNames | list[str] | File names | |
![]() |
outFound | bool |


