Thursday, July 25, 2019

Windows cmd for each file in folder do smthing

for %f in (*.*) do echo %f
If there is space in files and you need to call some tool

for %f in (*.*) do call MyTool "%f"