from("ftp://localhost:21/myfolder?username=admin&password=secret&delete=true")
.to("file://output-folder")
from("ftp://localhost:21/myfolder?include=*.txt&exclude=*.tmp")
.to("file://output-folder")
from("ftp://localhost:21/myfolder/inbox?download=true")
.to("file://output-folder")
from("file://input-folder")
.to("ftp://localhost:21/myfolder/outbox?upload=true")
from("ftp://localhost:21/myfolder?consumer.delay=30000")
.to("file://output-folder")
from("ftp://localhost:21/myfolder")
.onException(Exception.class)
.handled(true)
.to("file://error-folder")
.end()
.to("file://output-folder")