
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone,
I have been working on this lisp but i hit a road block any help is appreciated!
(setq path "M:\CNC DXF FILES\\") ; This is the location I want to make the folder in.
(setq file (vl-string-translate "" "" (getstring T "NAME FILE"))) ; prompts user to enter desired name of the drawing.
(setq 1F (vl-string-translate "" "" (getstring T "NAME FOLDER"))); prompts user to enter desired name of the new folder
(acet-file-mkdir (strcat path 1F )) ; creates the new folder
(setq filepath (strcat path 1F) "\\" (strcat file ))) ; Combines everything to make the file path
(command "saveas" "dxf" "" filepath)
Something towards the end of this is not working properly and i need some help troubleshooting
Also everything i wrote was inspired by something else i read on the forums.
thanks guys
Solved! Go to Solution.