Returns the name of a file, after stripping out the directory path and extension
Supported Platforms: Windows and Mac OS
(vl-filename-base filename)
Type: String
File name. The vl-filename-base function does not check to see if the file exists.
Type: String
Textual value containing filename in uppercase, with any directory and extension stripped from the name.
(vl-filename-base "c:\\acadwin\\acad.exe") "ACAD" (vl-filename-base "c:\\acadwin") "ACADWIN"
(vl-filename-base "/myutilities/lsp/utilities.lsp") "utilities" (vl-filename-base "/myutilities/support") "support"