blob: 9babe11394d7706009b16297a38af7e73dbfd5c0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.chemistry.opencmis.commons.*
import org.apache.chemistry.opencmis.commons.data.*
import org.apache.chemistry.opencmis.commons.enums.*
import org.apache.chemistry.opencmis.client.api.*
cmis = new scripts.CMIS(session)
// destination folder
File localFolder = new File("/some/local/folder")
// source folder
Folder sourceFolder = cmis.getFolder("/folder/to/download")
// download folder tree
download(localFolder, sourceFolder)
//--------------------------------------------------
def download(File localFolder, Folder sourceFolder) {
println "\nDownloading ${sourceFolder.name} to ${localFolder.absolutePath}\n"
sourceFolder.children.each { child ->
File newFile = new File(localFolder, child.name)
if (child instanceof Folder) {
println "[Folder] ${newFile.name}"
newFile.mkdir()
download(newFile, child)
}
else if (child instanceof Document) {
println "[File] ${newFile.name}"
cmis.download(child, newFile)
}
}
}