#include "muse_builtins.h"#include <string.h>Include dependency graph for muse_builtin_misc.c:

Functions | |
| static muse_cell | generate_files (FILE *info, int i, muse_boolean *eol) |
| muse_cell | fn_list_files (muse_env *env, void *context, muse_cell args) |
| (list-files [pattern]). | |
| muse_cell | fn_list_folders (muse_env *env, void *context, muse_cell args) |
| (list-folders parent-folder). | |
All rights reserved. See LICENSE.txt distributed with this source code or http://muvee-symbolic-expressions.googlecode.com/svn/trunk/LICENSE.txt for terms and conditions under which this software is provided to you.
A collection of OS-specific functions exposed in the language.
| static muse_cell generate_files | ( | FILE * | info, | |
| int | i, | |||
| muse_boolean * | eol | |||
| ) | [static] |
(list-files [pattern]).
Returns a list of files that patch the given pattern. For example:
(list-files "*.jpg")
(list-folders parent-folder).
Returns a list of folder names for all the folders that exist under the given parent folder. For example:
(list-folders "../*")
1.4.7