Skip to content

stdfilu

Anssi Halmeaho edited this page May 8, 2020 · 1 revision

stdfilu

Provides more utilities for file handling.

get-files-by-ext

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)

get-subdirs

Returns list of directories (list: string) in given path (string, 1st argument).

type: procedure

Format:

call(stdfilu.get-subdirs <path-string>) -> list (of strings)

get-nondirs

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)
Clone this wiki locally