First time here? Check out the Help page!
1 | initial version |
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.