current-directory
returns a string containing the absolute file name representing the current working directory. If this string cannot be obtained, #f is returned.If
current-directory
cannot be supported by the platform, then #f is returned.
Creates a sub-directory name of the current-directory. If successful,
make-directory
returns #t; otherwise #f.
proc must be a procedure taking one argument. ‘Directory-For-Each’ applies proc to the (string) name of each file in directory. The dynamic order in which proc is applied to the filenames is unspecified. The value returned by ‘directory-for-each’ is unspecified.
Applies proc only to those filenames for which the procedure pred returns a non-false value.
Applies proc only to those filenames for which
(filename:match??
match)
would return a non-false value (see Filenames).(require 'directory) (directory-for-each print "." "[A-Z]*.scm") -| "Bev2slib.scm" "Template.scm"
path-glob is a pathname whose last component is a (wildcard) pattern (see Filenames). proc must be a procedure taking one argument. ‘directory*-for-each’ applies proc to the (string) name of each file in the current directory. The dynamic order in which proc is applied to the filenames is unspecified. The value returned by ‘directory*-for-each’ is unspecified.