Function Entry: FNSPLITL
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: FNSPLITL
Name
fnsplitl
Class
BricsCAD Standard / Misc Function
Syntax
(fnsplitl pathname)
Arguments and Values
- pathname string, any file or folder name to
- splitted
Description
This function returns the file or folder name pathname splitted into components as listof strings (path, name, extension).
Return Values
list of strings (path name extension)
Examples
(fnsplitl
"C:\MyAppFolder\BootStrap.lsp")
("C:\MyAppFolder\" "BootStrap"
".lsp")
(fnsplitl
"/MyAppFolder/BootStrap.lsp")
("/MyAppFolder/" "BootStrap"
".lsp")
(fnsplitl
"MyAppFolder\BootStrap.lsp")
("MyAppFolder\" "BootStrap"
".lsp")
(fnsplitl
"\MyAppFolder\BootStrap.lsp")
("\MyAppFolder\" "BootStrap" ".lsp")
Notes
the specified pathname must not exist on disk
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [fnsplitl (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/fnsplitl.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).