I bet this is soooooo simple but here goes!

All I'm tring to do is to copy a whole folder, along with it's contents, to another address.
I want to copy a folder on my desktop called "test" to the program files directory.

I have tried:

FileCopy "C:\WINDOWS\Desktop\Test", "C:\Program Files\Test"

And

FileCopy "C:\WINDOWS\Desktop\Test\*.*", "C:\Program Files\Test"

AND

FileCopy "C:\WINDOWS\Desktop\Test\*", "C:\Program Files\Test"

All I get is a nice error message: "52 Bad File Name Or Number"

Thanks for advice!