Lists all files in a given directory
(vl-directory-files [directory pattern directories])
Arguments
A string naming the directory to collect files for; if nil or absent, vl-directory-files uses the current directory.
A string containing a DOS pattern for the file name; if nil or absent, vl-directory-files assumes “*.*”
An integer that indicates whether the returned list should include directory names. Specify one of the following:
-1 List directories only.
0 List files and directories (the default).
1 List files only.
Return Values
A list of file and path names; otherwise nil if no files match the specified pattern.
Examples
(vl-directory-files "c:/acadwin" "acad*.exe")
("ACAD.EXE" "ACADAPP.EXE" "ACADL.EXE" "ACADPS.EXE")
(vl-directory-files "e:/acadwin" nil -1)
("." ".." "SUPPORT" "SAMPLE" "ADS" "FONTS" "IGESFONT" "SOURCE" "ASE")
(vl-directory-files "E:/acad" nil -1)
("." ".." "WIN" "COM" "DOS")