I'm using the following batch script to process some image files, basically just grabbing some files listed in a txt file and copying it to the current folder.
For %%a in (*.txt) do (
For /f "delims=" %%N in (%%a) do copy "C:\Files\%%N.jpg" %cd%
)
However it does not work for files with an apostrophe in its name, is there some way to make it work?