I am using common lisp for customizing CoCreate Cad software.
I am confused regarding the load function.
The following command will load the indicated file:
(load "c:\\temp\\testload")
The following will load the 2nd item but the 1st item exists:
(load "c:\\temp\testload"
if-does-not-exist
(load "c:\\temp\\testload2")
)
Could somebody please explain why the testload will not load, even though it exists?
The files do not have a file extension and I'd like to run it this way.
Thank You
Bill