I found the solution.
If you want to do this the command is:
for /D %a in ([destination folder]\*) do xcopy [source file] “%a” /H /K /Y
"[,]" is not part of expression, however "(,)" is!
/H: Copies hidden files as well
/K: Keeps attributes
/Y: Suppresses prompting to confirm you want to...