hi.. need help on creating lsp that can:
> save out a copy each on all opened dwgs to specified folder with suffix increase as per existing by next number!
example;
```````
Currently opened dwgs:
abc.dwg , def.dwg , ghi.dwg , etc.dwg
when the command function is execute, it will create a copy each in specified folder same as the above opened filenames with a suffix added as shown below;
c:\documents & settings\user\backup\abc_1.dwg
c:\documents & settings\user\backup\def_1.dwg
c:\documents & settings\user\backup\ghi_1.dwg
if the second time of the command function is execute, it will save another copy with increment of 1 as per existing filename as shown below;
c:\documents & settings\user\backup\abc_2.dwg
c:\documents & settings\user\backup\def_2.dwg
c:\documents & settings\user\backup\ghi_2.dwg
thanks