Community
Civil 3D Forum
Welcome to Autodesk’s Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LISP filepath/files location - where do they live?

7 REPLIES 7
Reply
Message 1 of 8
Anonymous
17987 Views, 7 Replies

LISP filepath/files location - where do they live?

In Civil 3D 2014, where are the lisp files (.lsp) stored?  There are none in C:\Users\[username]\AppData\Roaming\Autodesk\C3D 2014\enu\Support, which was where we hoped to find them.  

 

Many thanks.  

7 REPLIES 7
Message 2 of 8
rkmcswain
in reply to: Anonymous

What LSP files are you talking about? Your own?
R.K. McSwain     | CADpanacea | on twitter
Message 3 of 8
tcorey
in reply to: Anonymous

C:\Program Files\Autodesk\Autodesk AutoCAD Civil 3D 2014

 

If those are what you're looking for.

 

 



Tim Corey
MicroCAD Training and Consulting, Inc.
Redding, CA
Autodesk Gold Reseller

New knowledge is the most valuable commodity on earth. -- Kurt Vonnegut
Message 4 of 8
trynders
in reply to: tcorey

at the command line, you can type...

 

(findfile"xxx.xx") and it will return the file location

 

xxx.xx could be like acad.lin

Message 5 of 8
sboon
in reply to: trynders

A search of my C: drive for ".lsp" finds a list of files in C:\Program Files\Autodesk\Autodesk AutoCAD Civil 3D 2014\Support\ and in subdirectories of that folder.  If you check the files tab of your Options dialog you should see the same folders as part of the default support system.

 

Some users have their own lsp files and store them in a separate folder so that they're not affected by changes to the software installation.

 

Steve
Please use the Accept as Solution or Kudo buttons when appropriate

Steve
Expert Elite Alumnus
Message 6 of 8
Joe-Bouza
in reply to: Anonymous

I have a condition where findfile acaddoc.lsp shows up in the correct path but the other lisp files in the same folder do not, why? all the lisp have been in use for years and load fine manually

Joe Bouza
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature

Message 7 of 8
trynders
in reply to: Anonymous

I have a modified acad.lsp file which says to load many different lisp files.  For example...All my display lisp are in a displays.lisp file, all my layer lisps are in a layers.lisp file, etc.  Inside my layer.lsp file I define many different lisp routines.  Below is a clip of my acad.lsp file which I have to set to load with each drawing...

 

;==== Global Settings =======

(setvar "xrefctl" 0)
(setvar "xloadctl" 0)
(setvar "proxynotice" 0)
(setvar "LWDISPLAY" 0)

;==== AutoLISP =======
(princ "\n--- Loading LISP Utilities --- ")
(princ " 1")
(load "PROBE")
(princ " 2")
(load "Dims")
(princ " 3")
(load "Draws")
(princ " 4")
(load "Files")
(princ " 5")
(load "Layers")
(princ " 6")
(load "Modifys")
(princ " 7")
;;;;;;(load "Osnaps")
(princ " 8")
;;;;;;(load "Plotting")
(princ " 9")
;;;;;;(arxload "whohas")
(princ " 10")
(load "Toggles")
(princ " 11")
(load "displays")
(princ " 12")
(load "Crevcloud")
(princ " 13")
(load "texts")
(princ " 14")
(princ " ")
(PRINC)

 

 

Message 8 of 8
rkmcswain
in reply to: trynders

trynders wrote:

Below is a clip of my acad.lsp file which I have to set to load with each drawing...

Best practice is to set ACADLSPASDOC to 0, and let "acad.lsp" load once per session. "Acaddoc.lsp" is designed to load for each drawing.
R.K. McSwain     | CADpanacea | on twitter

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


 

Autodesk Design & Make Report