If I upload a Revit file can any API tell me what version it was created with? Same for dwg, 3ds and any other file. Thanks
Are any of the Forge APIs able to tell me the version of the software that created that created file
Asked
Active
Viewed 98 times
1 Answers
1
Forge Design Automation APIs might help this case, you can use cloud engines of Autodesk product (such as AutoCAD, Revit, Inventor, etc.) to read file details. What you have to do is writing some tiny add-ins to read software version stored in the file.
Besides, you can use some third-party tools to archive the same goal as well:
- RVT file is actually an OLE document, you can use
OLE library for .NET
to read software version inside RVT, please check this blog Basic File Info and RVT File Version from Jeremy. - The DWG can be read as a text file, you can use the regular expression to extract the version number out, please refer here.

Eason Kang
- 6,155
- 1
- 7
- 24