#usage "run a ULP through all libraries in a directory

\n" "This is an example how to loop through all libraries in a directory " "and counts the devices.

" "Load any library from the library directory and execute the ULP.

" "Author: support@cadsoft.de

" string a[], cmd; //-------- main program -------------------------------------------------- if (library) { library(L) { string lbr_path = filedir(L.name); string ulpFile = dlgFileOpen("Select a ULP to run in LBRs", "", "*.ulp"); int n = fileglob(a, lbr_path + "*.lbr"); if (n) { for (int xl = 0; xl < n; xl++) { string h; sprintf(h, "OPEN " + lbr_path + filename(a[xl]) + ";\nRUN " + ulpFile + ";\n"); cmd += h; } } } exit (cmd); } else dlgMessageBox("Start this ULP from a Library", "OK");