Evaluates the AutoLISP expressions in a file
(load filename [onfailure])
The load function can be used from within another AutoLISP function, or even recursively (in the file being loaded).
A string that represents the file name. If the filename argument does not specify a file extension, load adds an extension to the name when searching for a file to load. The function will try several extensions, if necessary, in the following order:
As soon as load finds a match, it stops searching and loads the file.
The filename can include a directory prefix, as in “c:/function/test1”. A forward slash (/) or two backslashes (\\) are valid directory delimiters. If you don't include a directory prefix in the filename string, load searches the AutoCAD library path for the specified file. If the file is found anywhere on this path, load then loads the file.
Unspecified, if successful. If load fails, it returns the value of onfailure; if onfailure is not defined, failure results in an error message.
For the following examples, assume that file /fred/test1.lsp contains the expressions
(defun MY-FUNC1 (x)
...function body...
)
(defun MY-FUNC2 (x)
...function body...
and that no file named test2 with a .lsp, .fas, or .vlx extension exists:
Command: (load "/fred/test1")
MY-FUNC2
Command: (load "\\fred\\test1")
MY-FUNC2
Command: (load "/fred/test1" "bad")
MY-FUNC2
Command: (load "test2" "bad")
"bad"
Command: (load "test2") causes an AutoLISP error
The defun and vl-load-all functions. The Symbol and Function Handling topic in the AutoLISP Developer's Guide.