Secure copy protocol (SCP) is an implementation of FTP based on SSH.
ποΈ Port: 22 (TCP)
# upload
$ scp file_to_upload user@IP:remote/path/
# download
$ scp user@IP:remote/path/ local_path_to_dest
β‘οΈ Use scp -r
to download/upload a folder with all its content.