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