Hi All,
What is the easiest/fastest way to convert many DWG files to DXF files?
TIA,
Sal
Solved! Go to Solution.
Hi All,
What is the easiest/fastest way to convert many DWG files to DXF files?
TIA,
Sal
Solved! Go to Solution.
Solved by jggerth. Go to Solution.
We can use Publish command for coversion from DWGs to DXFs. In Publish window we can select multiple dwgs.
We can use Publish command for coversion from DWGs to DXFs. In Publish window we can select multiple dwgs.
Hi Apurva,
Thanks for your reply. My options in plot/publish are to PDF, DWF, DWFx, MS XPS, JPG, PNG... but no DXF. Am I missing something?
The only way i know of is from the application "A" to select "Save As > Other Formats" and i'm not even sure if this can be scripted.
Sal
Hi Apurva,
Thanks for your reply. My options in plot/publish are to PDF, DWF, DWFx, MS XPS, JPG, PNG... but no DXF. Am I missing something?
The only way i know of is from the application "A" to select "Save As > Other Formats" and i'm not even sure if this can be scripted.
Sal
that should be scriptable, using the command DXFOUT
that should be scriptable, using the command DXFOUT
Hi JGerth,
Thanks for the suggestion but i couldn't find a command-line version of the DSXOUT command and as such, i don't know how to script that.
I think we're getting closer. Any other suggestions?
Sal
Hi JGerth,
Thanks for the suggestion but i couldn't find a command-line version of the DSXOUT command and as such, i don't know how to script that.
I think we're getting closer. Any other suggestions?
Sal
DXFOUT, not DSXOUT.
Try using ScriptPro to set upo your script, but the basic format would be
OPEN
drive:\complete\path\to.dwg
DXFOUT
drive:\desired\path\for.dxf
CLOSE
rinse and repeat as many times as you need in your .scr
DXFOUT, not DSXOUT.
Try using ScriptPro to set upo your script, but the basic format would be
OPEN
drive:\complete\path\to.dwg
DXFOUT
drive:\desired\path\for.dxf
CLOSE
rinse and repeat as many times as you need in your .scr
Yeah, bad typing skills. But even spelling it correctly as you pointed out, there doesn't seem to be a command line version (-DXFOUT) available. I guess i could test it with a dummy script but will the base command (DXFOUT) NOT open a dialog boxin a script?!
Yeah, bad typing skills. But even spelling it correctly as you pointed out, there doesn't seem to be a command line version (-DXFOUT) available. I guess i could test it with a dummy script but will the base command (DXFOUT) NOT open a dialog boxin a script?!
running DXFOUT in a script should automagically run command-line only and not fire up the dialog.
to play it safe though, you could always start the script with FILEDIA 0
Just remember to reset it when you are done.
I understand about typeing skillz -- same thing haooens here
running DXFOUT in a script should automagically run command-line only and not fire up the dialog.
to play it safe though, you could always start the script with FILEDIA 0
Just remember to reset it when you are done.
I understand about typeing skillz -- same thing haooens here
Thanks. I'll give it a go.
Thanks. I'll give it a go.
Can't find what you're looking for? Ask the community or share your knowledge.