Is there a vlisp/lisp function that returns a list of source (lsp) files from a project file? Dean
Dean, from a project file? This is something I also want it to have, but as far I know there is no built-in function for this. Type in the APROPOS the keyword: VLISP- You will get the available functions [not all acctually work] But for example to get the path of a PRJ file you can use: (vlisp-find-project "my_project") To get a list of loaded projects: (vlisp-list-loaded-projects) The other functions have not play that much... I assuming one would have to read the PRV file, get the PRJ projects and read each of them just after the line of :OWN-LIST to get the list of lisp files.... I don't know on this one. HTH
(vl-directory-files [directory pattern directories]) EX (vl-directory-files "c:/data/source/" "*.lsp" 1) would return al .lsp files in that directory