Copy all zipped files from one folder to another

Hi everyone,

when I try to copy *.gz files run cp within the correct source folder it works as follow:
Source folder = C:/Documents and Settings/user/Recent papers/2771/
Destination folder = C:/Documents and Settings/user/My documents/1532/temp

cp *.gz "C:/Documents and Settings/user/My documents/1532/temp" (it works)

but when I write source folder and destination folder is not working:

cp "C:/Documents and Settings/user/Recent papers/2771/" *.gz "C:/Documents and Settings/user/My documents/1532/temp"  (Is not working)
cp "C:/Documents and Settings/user/Recent papers/2771/*.gz" "C:/Documents and Settings/user/My documents/1532/temp"  (Is not working either)

How is the correct way to do it?
I�m using Cygwin.

Thanks in advance.

Did you try this ?

cp "C:/Documents and Settings/user/Recent papers/2771/"*.gz "C:/Documents and Settings/user/My documents/1532/temp"

(without space between the " and the * )

Hi ctsgnb,

That�s was the error. Many thanks for your help, it works now!

Best regards.