CMD Useful commands
List all files in a directory, showing just their file names
for /R %A in (*.*) do @echo %~nA
To add an extension
for /R %A in (*.*) do @echo %~nA.jar
List all files in a directory, showing just their file names
for /R %A in (*.*) do @echo %~nA
To add an extension
for /R %A in (*.*) do @echo %~nA.jar