I am currently using the following bat code to move my files from one folder to another
@echo off
set X=0
set "source=C:\<Source Folder Path>"
set "destination=D:\<Destination Folder Path>"
robocopy "%source%" "%destination%" /mov /minage:%X%
exit /b
However, I would like to move only a specified file within this source folder, rather than everything in this folder. Namely, if the excel file contains ABCXYZ as a prefix (eg file name: ABCXYZ-June2021.xls), it will be moved to my destination folder.
How would I go about achieving this?