LISP filepath/files location - where do they live? (2024)

Civil 3D Forum

Welcome to Autodesk’s Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D topics.

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

LISP filepath/files location - where do they live?

7 REPLIES 7

Back to Civil 3D Category

Back to Topic Listing

Reply

Topic Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Printer Friendly Page
  • Back to Topic Listing
  • Previous
  • Next

Message 1 of 8

LISP filepath/files location - where do they live? (1)

LISP filepath/files location - where do they live? (2)mcloughlin

16473 Views, 7 Replies

‎04-25-201407:07 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-25-201407:07 AM

LISP filepath/files location - where do they live?

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

Many thanks.

Report

0Likes

Reply

  • Back to Topic Listing
  • Previous
  • Next

7 REPLIES 7

Message 2 of 8

LISP filepath/files location - where do they live? (3)

LISP filepath/files location - where do they live? (4)rkmcswain

in reply to:mcloughlin

‎04-25-201407:16 AM

What LSP files are you talking about? Your own?

R.K. McSwain | CADpanacea | on twitter

Report

0Likes

Reply

Message 3 of 8

LISP filepath/files location - where do they live? (5)

LISP filepath/files location - where do they live? (6)tcorey

in reply to:mcloughlin

‎04-25-201407:42 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-25-201407:42 AM

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

Report

0Likes

Reply

Message 4 of 8

LISP filepath/files location - where do they live? (7)

LISP filepath/files location - where do they live? (8)trynders

in reply to:tcorey

‎04-25-201407:49 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-25-201407:49 AM

at the command line, you can type...

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

xxx.xx could be like acad.lin

Report

Message 5 of 8

LISP filepath/files location - where do they live? (9)

LISP filepath/files location - where do they live? (10)sboon

in reply to:trynders

‎04-26-201412:10 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-26-201412:10 AM

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

Report

2Likes

Reply

Message 6 of 8

LISP filepath/files location - where do they live? (11)

LISP filepath/files location - where do they live? (12)Joe-Bouza

in reply to:mcloughlin

‎04-26-201412:59 PM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-26-201412:59 PM

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

Thank you

Joseph D. Bouza, P.E. (one of 'THOSE' People)

HP Z210 Workstation
Intel Xeon CPU E31240 @ 3.30 Hz
12 GB Ram

LISP filepath/files location - where do they live? (13)
Note: Its all Resistentialism, so keep calm and carry on

64 Bit Win10 OS

Report

0Likes

Reply

Message 7 of 8

LISP filepath/files location - where do they live? (14)

LISP filepath/files location - where do they live? (15)trynders

in reply to:mcloughlin

‎04-28-201405:45 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-28-201405:45 AM

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)

Report

0Likes

Reply

Message 8 of 8

LISP filepath/files location - where do they live? (16)

LISP filepath/files location - where do they live? (17)rkmcswain

in reply to:trynders

‎04-28-201405:50 AM

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report

‎04-28-201405:50 AM

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

Report

0Likes

Reply

LISP filepath/files location - where do they live? (18)

Reply

Topic Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Printer Friendly Page
  • Back to Topic Listing
  • Previous
  • Next
LISP filepath/files location - where do they live? (2024)
Top Articles
Latest Posts
Article information

Author: Arielle Torp

Last Updated:

Views: 6000

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Arielle Torp

Birthday: 1997-09-20

Address: 87313 Erdman Vista, North Dustinborough, WA 37563

Phone: +97216742823598

Job: Central Technology Officer

Hobby: Taekwondo, Macrame, Foreign language learning, Kite flying, Cooking, Skiing, Computer programming

Introduction: My name is Arielle Torp, I am a comfortable, kind, zealous, lovely, jolly, colorful, adventurous person who loves writing and wants to share my knowledge and understanding with you.