It looks like this is a webroot directory.
Why not pin the directory above (httpdocs / html / whatever) and then move it to the website space and load from there?
i.e. enter the directory above the root of the website. For example, if your web root is / var / www / html / go to / var / www / and run the following commands:
zip -r allwebfiles.zip html mv allwebfiles.zip /html/allwebfiles.zip
Then in your web browser go to http://mydomain.com/allwebfiles.zip and just download this file.
When extracting, you just need to extract to / var / www / OR extract in webroot and move all the files to the same level.
source share