I have 1 file in folder \\myserver\myfolder
whose file name has a space like
First Name_20180810.csv
.
I need a command that will run daily to rename
First Name_{date}.csv
to FirstName_{date}.csv
.
The date in file name changes daily. For example, today the file name is
First Name_20180812.csv
, tomorrow the file name is First Name_20180813.csv
.
How can I rename First Name_{date}.csv
to be FirstName_{date}.csv
in folder \\myserver\myfolder
?
Thank you.