Go to the first, previous, next, last section, table of contents.


Reading Directories

Function: directory-files directory-name
This function returns a list of the names of all files in the directory whose file name is directory-name. The names in the list will be relative to the directory directory-name, any directories in the list will have a `/' character appended to them.

(directory-files "/tmp/foo"
    => ("bar" "subdir/" "xyz" "." "..")


Go to the first, previous, next, last section, table of contents.