I need to convert some xls files into xlsx files. I can successfully convert one xls file into xlsx by running this command into cmd prompt (windows):
ssconv
I am doing similar thing to compile all the c files in a directory. for iterating files in different directory try this.
set codedirectory=C:\Users\code for /r %codedirectory% %%i in (*.c) do ( some GCC commands )