I have this code :
xcopy "C:\30*.zip" "C:\Folder\"
what i want is to copy the zip files to a new folder, this folder named as the current month
ex : March , April
|
I have this code :
what i want is to copy the zip files to a new folder, this folder named as the current month
| |||||
feedback
|
|
Here is a clunky way of doing it in powershell:
| |||||||||
feedback
|
|
For another command script way to do this, using JP Software's TCC/LE, simply use the copy /MD C:\30*.zip C:\Folder\%_MONTHF\ Further reading
| |||
|
feedback
|