从FTP下载文件(Groovy ANT任务)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从FTP下载文件(Groovy ANT任务)相关的知识,希望对你有一定的参考价值。

This script will alow you to download files from a remote FTP
  1. ant = new AntBuilder()
  2. ant.ftp( server:"ftp.foo.com",
  3. userid:"user",
  4. password:"passwd",
  5. passive:"yes",
  6. verbose:"yes",
  7. action:"get',
  8. remotedir:"/pub/incoming",
  9. binary:"yes" ) {
  10. fileset( dir:"." ) {
  11. include( name:"**/*.gz" )
  12.   }
  13.   }

以上是关于从FTP下载文件(Groovy ANT任务)的主要内容,如果未能解决你的问题,请参考以下文章

Ant / Groovy:如何删除超过给定日期的文件,但最多保留3个[重复]

测试空的常规闭包?

gradle介绍

从 jar 中删除文件的 ant 任务

Groovy构建工具 ( 构建工具引入 | Gradle 构建工具作用 | 传统的依赖管理 )

错误记录Groovy 报错 ( Execution failed for task ‘:compileGroovy‘. > org/apache/tools/ant/taskdefs/Java )