Ok I am sorry but it give me error if i want to create new folder beside last folder in path
Not in last folder but beside it
"new drawings" and then save as in it
(setq result (substr result 1 (1+ (vl-string-position 92 (substr result 1 (1- (strlen result))) 1 T))))
(setq result (vl-string-left-trim "\\" result)) ; Remove leading backslashes
(setq result (vl-string-right-trim "\\" result)) ; Remove trailing backslashes
(vl-mkdir strcat result "/new Drawings/")
(if (< (getvar "expert") 2) ; add to chk setting
(command "_.SAVEAS" "" (strcat result "/new Drawings" "\\" (nth n Files_Folder)) "_Yes")
)