乐筑天下

搜索
欢迎各位开发者和用户入驻本平台 尊重版权,从我做起,拒绝盗版,拒绝倒卖 签到、发布资源、邀请好友注册,可以获得银币 请注意保管好自己的密码,避免账户资金被盗
查看: 41|回复: 0

[编程交流] Export to AutoCAD - Layers Gon

[复制链接]

35

主题

145

帖子

114

银币

初露锋芒

Rank: 3Rank: 3Rank: 3

铜币
180
发表于 2022-7-5 15:45:59 | 显示全部楼层 |阅读模式
I have an export routine that I would like to improve on.
 
It's "fine" but I would like it to do two things.
 
The first thing (and most important) is that the unused layers go away.  I need that not to happen.
 
The second thing is that it would be nice if the file could overwrite itself, but I don't think that is possible.  But I can do a work around for that.
 
Below is the code.
 
  1. (defun c:E2A ( / filename)  (setq filename (strcat (getvar "dwgprefix") "acad-" (getvar "dwgname")))  ; (setq filename (strcat (getvar "dwgprefix") "" (getvar "dwgname")))  (if (findfile filename)     (progn        (Princ "\nOverwriting and exporting file to AutoCAD ...")        (command "_.-exporttoautocad" "_F" "2010" "" filename "_Y")     )     (progn        (Princ "\nExporting new file to AutoCAD ...")        (command "_.-exporttoautocad" "_F" "2010" "" filename)     )  )  (princ))
 
Greg
回复

使用道具 举报

发表回复

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

本版积分规则

  • 微信公众平台

  • 扫描访问手机版

  • 点击图片下载手机App

QQ|关于我们|小黑屋|乐筑天下 繁体中文

GMT+8, 2025-3-13 23:57 , Processed in 0.627352 second(s), 65 queries .

© 2020-2025 乐筑天下

联系客服 关注微信 帮助中心 下载APP 返回顶部 返回列表