I've used (vl-directory-files "C:FOLDER/" "*.xyz" 1) to get a list of the files in "FOLDER" directory and my list returns something like: [0] 123.xyz [1] abc.xyz [2] mno.xyz......etc. Now, I need to strip away the extension ".xyz" from each of these file names, but remain in a list form. I know that (vl-string-right-trim ".xyz" <something>) will get rid of the extension, but I'm not sure how to go about using it. Any suggestion? TIA