Jump to content

Process all IFC Files in Folder

You can use a Simplebim script (.sbs) and a Windows batch (.bat) file to process all IFC files in a specified folder.

First create a new batch (.bat) file with the example below.

SET SB10=C:\Program Files\Datacubist\Simplebim 10\Simplebim10.exe
SET SBS=C:\Scripts\batch_Template.sbs
SET IFC=C:\IFC files
For /R "%IFC%" %%G IN (*.ifc) do "%SB10%" "%SBS%" "%%G"
Pause

Then simply change the SBS variable to point to your actual Simplebim script and the IFC variable to point to the folder where you actually have your IFC files.