Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I found a lisp, but can only save 1 file with the name 001. Can someone help me how to save more files with increasing names from 000-999. Thanks everyone
(defun c:fwb ()
(setq pickset (ssget))
(setq file_name "D:\\file new\\001.dwg")
(command "_.WBLOCK" file_name "" (list 0.0 0.0 0.0) pickset "")
(command "_.OOPS")
)
Solved! Go to Solution.