In general we will download one file at a time from remote file using scp.
We can also download multiple files/directories at once using scp command.
Here is the example to download multiple files/directories at once with scp:
$ scp -r user@ip-address:"/path/to/file /path/to/directory" /destination/path/
Above command will download both file and directory to destination path.
-Sany