-
Notifications
You must be signed in to change notification settings - Fork 0
stdfilu
Anssi Halmeaho edited this page May 8, 2020
·
1 revision
Provides more utilities for file handling.
Returns list of files (list: string) in given path (string, 1st argument) which have given extension (string, 2nd argument).
type: procedure
Format:
call(stdfilu.get-files-by-ext <path-string> <extension-string>) -> list (of strings)
Returns list of directories (list: string) in given path (string, 1st argument).
type: procedure
Format:
call(stdfilu.get-subdirs <path-string>) -> list (of strings)
Returns list of non-directory files (list: string) in given path (string, 1st argument).
type: procedure
Format:
call(stdfilu.get-nondirs <path-string>) -> list (of strings)