0

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

Augusto Goncalves
  • 8,493
  • 2
  • 17
  • 44

1 Answers1

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:

  1. 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.
  2. 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