I need to write a batch file that will search a folder for all dll’s, take their name do some processing with such. So for example a folder containing
File1.dll
File2.dll
File3.dll
within C:\temp
should return
File1
File2
File3
I would like to do some further processing then with these filenames.
Any idea how I might do such?
for /r %i in (*.dll) do @echo %~ni