使用带有时间戳的 FTP Ant 任务上传文件



我有以下代码在工作。我已经进行了一些搜索,但找不到有关如何关联每个文件上传时的时间戳的任何内容。这将很有帮助,因为我可以了解文件在上传过程中何时失败。

<ftp password="${password}" server="${server}" userid="${userid}"    passive="true" remotedir="${remoteDir}">
        <fileset dir="${localDir}">
            <include name="**/*"/>
        </fileset>

基本上,而不是在日志中生成:

[ftp] File /DirectorytoUploadto/File.xml copied to server

我想要一些类似的东西:

[ftp] File /DirectorytoUploadto/File.xml copied to server at 2013-10-01 12:19:09

有谁知道如何做到这一点?

要获取每个记录消息的时间戳,请使用 Log4J 侦听器。

相关内容

  • 没有找到相关文章

最新更新