从FTP下载文件(Groovy ANT任务)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从FTP下载文件(Groovy ANT任务)相关的知识,希望对你有一定的参考价值。
This script will alow you to download files from a remote FTP
ant.ftp( server:"ftp.foo.com", userid:"user", password:"passwd", passive:"yes", verbose:"yes", action:"get', remotedir:"/pub/incoming", binary:"yes" ) { fileset( dir:"." ) { include( name:"**/*.gz" ) } }
以上是关于从FTP下载文件(Groovy ANT任务)的主要内容,如果未能解决你的问题,请参考以下文章
Ant / Groovy:如何删除超过给定日期的文件,但最多保留3个[重复]
Groovy构建工具 ( 构建工具引入 | Gradle 构建工具作用 | 传统的依赖管理 )
错误记录Groovy 报错 ( Execution failed for task ‘:compileGroovy‘. > org/apache/tools/ant/taskdefs/Java )