https://issues.apache.org/bugzilla/show_bug.cgi?id=47860

--- Comment #3 from Mario Frasca <[email protected]> 2009-09-21 02:09:02 PDT ---
actually better separate file names with a ','
then one can use FileList
(http://ant.apache.org/manual/CoreTypes/filelist.html)

a sample usage:
  <ftp server="${server}" userid="${user}" password="${pass}"
       transferredItemsProperty="transferredfiles"
       action="put" skipFailedTransfers="true"
       remotedir="/test-ftp">
    <fileset dir="./">
      <include name="?"/>
    </fileset>
  </ftp>

  <echo>successfully sent: (${transferredfiles})</echo>

  <delete>
    <filelist dir="./" files="${transferredfiles}"/>
  </delete>

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

Reply via email to