明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2294|回复: 6

如何利用LISP或VISUALLISP实现搜索路径的设置????

[复制链接]
发表于 2002-10-13 22:50:00 | 显示全部楼层 |阅读模式
发表于 2002-10-14 16:40:00 | 显示全部楼层

不知道你要搜索什么?说明白一点。

 楼主| 发表于 2002-10-16 12:35:00 | 显示全部楼层

在CAD中我想通过(setvar "acadprefix")设置这个系统变量,但因为是只读,故无

在CAD中我们一般都用OPTIONS命令中的FILE下面来设置SUPPORT FIEL SEARCH PATH, 我想通过(setvar "acadprefix")设置这个系统变量,但因为是只读,故无法更改,是否能通过LISP的其它命令实现.
发表于 2002-10-17 08:01:00 | 显示全部楼层

Not sure what you want to do, but...

if you want to add a path to the support path, there is a function call addSupportPath in the AutoLisp Function Collection in this web site.
发表于 2002-10-17 09:54:00 | 显示全部楼层

地址

http://www.mccad.net/function/alisp/003.htm
发表于 2002-10-17 19:05:00 | 显示全部楼层

本站就有这个函数

;|将自己定义的路径加载到ACAD支持路径当中。
参数dir是自己定义的路径名,pos是位置,为0时在最前端,为nil时在最后。|;

(defun addSupportPath (dir pos / tmp c)
  (setq        tmp ""
        c   -1
  )
  (if (not pos)
    (setq tmp (strcat (getenv "ACAD") ";" dir))
    (mapcar '(lambda (x)
               (setq tmp (if (= (setq c (1+ c)) pos)
                           (strcat tmp ";" dir ";" x)
                           (strcat tmp ";" x)
                         )
               )
             )
            (list (getenv "ACAD") ";")
    )
  )
  (setenv "ACAD" tmp)
  (princ)
)
 楼主| 发表于 2002-10-23 23:37:00 | 显示全部楼层

我已明白了,多谢帮忙!!!!

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 21:53 , Processed in 0.167000 second(s), 27 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表