To copy a file from Server to your local computer, local to server or server to server, use the command below
scp [email protected]:/path/to/your/file /path/to/your/local/filename
To copy a folder, add -r flag which will copy all files inside the folder recursively
scp -r [email protected]:/path/to/your/folder /path/to/your/destination