keen/io/file
Sourcepath-already-exists recordpath-not-found recordpath-kind enumfiledirectoryotherpaths-in-dir string[](path string) globalReturns all children of the directory
path, as full paths. Use names-in-dir instead if you want just the basenames.names-in-dir string[](a string) globalReturns the basename of all children of the directory. Does not include ".." or ".". Use
paths-in-dir instead if you want full paths.make-symlink-to void(link string, target string) globalCreate a symbolic link at
link with the target target.current-executable-path string() globalGets the path of the current executable. If this program was built to executable, this will return its path. Otherwise, this will be the path where
keen is installed.write-file void(path string, content string) globalWrites the full contents of the file as a string. If the file already exists, overwrites it.
each-child-recursive void(path string, f void mut(string)) globalIf
path is a directory, calls f on each file in the directory and any nested directories. If path is a file, calls f once.
trueif anything (like a file or directory) exists at the path.