Report this

What is the reason for this report?

How do I download all the files in my droplet?

Posted on February 28, 2024

It has been a while since I have been in and I have a ton of files I just want to download locally, zip them up and archive them.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Heya @waynehazle,

I would assume you mean your Application’s/Website’s files correct?

You can use FileZilla to do so. Check the following article on how to proceed with it:

https://docs.digitalocean.com/products/droplets/how-to/transfer-files/

You can transfer files from a local computer to a Droplet using a variety of different protocols and file transfer clients. We recommend using SFTP (SSH File Transfer Protocol) with FileZilla because it is a free, open source, cross-platform tool with a user interface that supports newer users. If you’re comfortable using the command line, you can also use tools like rsync and OpenSSH’s sftp and scp. This tutorial walks you through the initial installation of FileZilla and how to transfer files to your Droplet using an SSH connection.

Heya, @waynehazle

You can download the files locally using rsync, scp or with any FTP client like FileZilla. We have several articles that cover this step, you can check them bellow:

https://www.digitalocean.com/community/tutorials/how-to-copy-files-with-rsync-over-ssh

https://docs.digitalocean.com/products/droplets/how-to/transfer-files/

Once you have all the files locally, you can zip them up into a single archive. Most operating systems have built-in tools for this. For example, on Windows, you can select the files, right-click, and choose “Send to” -> “Compressed (zipped) folder”. On Unix-based systems like Linux or macOS, you can use the zip command in the terminal. For instance:

zip -r archive_name.zip directory_to_zip

Replace archive_name.zip with the desired name of your zip file and directory_to_zip with the path to the directory containing your files.

Regards

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.