I have a csv file , which will be downloaded automatically and saved in a specific folder as
c:\user\myproject\downloads\file.csv
this will be renamed (using batch script)
"copy c:\user\myproject\downloads\file.csv c:\user\myproject\downloads\file_%a%.csv (so the outcome will be a date ex: file_2022-04-03.csv)
then I want to zip the file which was renamed.
I tried c:\user\myproject\downloads\file_%a%.zip
but it gives the following error
I need a proper method to zip it and also to extract it.