A folder contains different .wbpj files with results. They were solved using different Ansys versions. How can I find out, by opening a file with PyAnsys, what AWB version was used to solve the file?
if you open a .wbpj file you will find that is basically an xml file
in the following keywords of the xml file you can find the version in which the file was the last time modified:
<Project Version="9.1"> <base-designpoint-name valType="String">0</base-designpoint-name> <timestamp-max valType="Int64">64833</timestamp-max> <framework-build-version valType="String">23.2.142.0</framework-build-version> <external-version-string valType="String">2023 R2</external-version-string>
Perfect! Thank you!