I am new to Autocad.we have created new windows service using .net.One task is to convert the dwg file to dxf file.
to perform the task we are using Script pro.
DWG files are located in P:\TRI_PRODUCTION.
XREF is located in different folder.
we need to bind and convert to DXF.
the script file contains following commands
File name : DXFout.scr
_.-XREF
BIND
*
dxfout
DWG2DXF.bpl
[General_Start]
Version*3
Product*2011
Script*C:\testdrwg\DXFOut.scr
TimeOut*30
RestartCount*30
IniScript*
LogFileName*
AutoCADPath*
Sleep*0
RunwithoutOpen*False
[General_End]
[DWGList_Start]
P:\TRI_PRODUCTION\X1LETDRA1.dwg,1
[DWGList_End]
It is creating the DXF file in P:\TRI_PRODUTION Folder.
We would like to create the DXF file in Different folder let say
source file : P:\TRI_PRODUCTION\X1LETDRA1.dwg
destination file : c:\DXFFiles\X1LETDRA1.dxf
I will appreciate any help to reslove my issue.