cancel
Showing results for 
Search instead for 
Did you mean: 

Download large zip

framtk
Champ on-the-rise
Champ on-the-rise

Hi,

in my installation of alfresco i've created a folder to use as an "archive" that only admins can modify. Now i need to download the files in the archive and i was thinking of downloading the whole folder as a yip but when i try to do so i get an error because the folder is approx 10gb in siye while the limit is 2. Is there a way to download the whole folder in one go or do i have to divide it in 2gb max folders?

1 ACCEPTED ANSWER

mrks_js1
Star Contributor
Star Contributor

you can connect to webdav with the webdav client of your operating system (win explorer, mac finder, linux -> connect to server)

see: Client WebDAV

View answer in original post

13 REPLIES 13

mrks_js1
Star Contributor
Star Contributor

i think all the relevant information for changing the registry on win7 is in the link that i mentioned: Client WebDAV

angelborroy
Community Manager Community Manager
Community Manager

FTP is also an advisable protocol for that kind of operations, more fail-tolerant than WebDAV for network fails.

Hyland Developer Evangelist

janv
Employee
Employee

Cyberduck is a useful client (available for Mac or Windows) for browsing and downloading folders from the Alfresco Repository. It also allows use to choose between WebDAV or FTP.

Regards,

Jan

cesarista
World-Class Innovator
World-Class Innovator

Hi everyone:

You may also combine using Alfresco webdav and wget command, for example for downloading the default site:

wget -r -nH -np -nv --cut-dirs=1 --user=<user> --password=<password> http://localhost:8080/alfresco/webdav/Sites/swsdp/documentLibrary

Regards.

--C.