Visual LISP, AutoLISP and General Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi All,
My work needs to convert thousands of DGN files to DWG. We are using AutoCAD 2012. Is it possible to batch convert dgn files with a LISP and a mapping file? Anyone have a LISP for this?
Any help is appreciated.
Arul
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Is it safe to say you don't have any Microstation installs? If you do, or if you can find one, use Utilities -> Batch Convert.
Otherwise, hopefully someone else can respond....
If I attach a dgn and then type -xref, ?, *, to list all xrefs, the dgn is not listed, so I don't know what it is inside the dwg.
Windows 7 x64
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Do you have the DGNIMPORT command in 2012?
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
First of all thank you for your replies.
Hi rick.hberg,
We do not have Microstation.
Hi alanjt_ ,
Yes. We have DGNIMPORT command in AutoCAD 2012.
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Very easy to write a batch Autolisp routine. All you would need is to create an ASCII text file (flat file) of all of the *.dgn files you wish to import, including full path. Autolisp program would then open file, read the first line, import the *.dgn file into AutoCAD, save as a *.dwg file , close, read the next line and repeat until all *.dgn files have been imported.
I can write the program for you, however I need for you to send me a *.dgn file to complete the program. Not familiar with *.dgn files and need a sample file to see how the DGNIMPORT function works.
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi Gabriel,
Hope your method will help for me. I have attached a .DGN file here.
Thanks,
Arul
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Any luck with this LISP? I'm also looking to batch convert alot of DGN files to DWG. I've just begun learning programming (LISP & C) so I'm not anywhere close to the level of knowledge I need to create such a LISP. However we are working on a project which is dragging because of the number of dgn files we must import & view. Very exhausting.
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Still digging for it. I will post here, once I get LISP code.
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Free download Professional batch DGN to DWG Converter in various version
Re: Batch convert DGN to DWG
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I've written the attached Lisp routine for converting multiple DGN files into DWG files. It expects a text file with the drawing names to convert as input. I've used it to convert large quantities of drawings.
The user has to make the necessary adjustments to the following variables:
tx1 = path and name of a file that holds a list with names for all the *.dgn's to be imported, names of *.dgn drawings may be written without extension, as well as with extension, in plain text format, no return after the last line.
tx2 = the path for the input folder, containing the actual *.dgn files to import.
tx3 = the path for the output folder, where the drawings converted into *.dwg will be saved, (routine assumes that the *.dwg files do not exist yet)
tx4 = name of the drawing model to import
Start the command by typing DGNI
The routine reads drawing names from the file given in tx1 line-for-line.
In each loop it performs a DGNIMPORT from the folder given as tx2 into the existing AutoCAD drawing,
does a Zoom Extends, saves the converted drawing result as *.dwg in the folder given as tx3,
and finally restores the drawing to its original state, ready to receive the next DGNIMPORT loop.
The DGNIMPORT command trips when the name of the *.dgn to be imported contains a comma, I advise to rename the drawings having this issue.
With friendly greetings, M. Moolhuysen.


