Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

Run this Python script to create a list of all IDFs in a folder (that you want to update):

import glob, os

f = open("update.lst", "a")
for file in glob.glob("*.idf"):
    f.write(f"{os.path.realpath(file)}\n")

f.close()

Then, use the IDF updater and select the update.lst that you just created.