I want to copy the files below from one place to another. After copying the file, I want to add something to the file name.
From C: \ Users \ Niki \ Desktop * .csv To C: \ Users \ Niki \ reports \ Final _ *. Csv
How can I do it? To do this, I use the command below:
copy /-y "C:\Users\Niki\Desktop\*.csv" "%TargetFolder%"
source share