0

I have a zip file in my ftp server. Is there any way to unzip it using NAnt? Here is a sample code of what I would like to do:

<ftp connection="liveAuditToolConnection" remotedir="/remotedir">
  <unzip zipfile="backup.zip"/>
</ftp>

Suppose that the backup.zip file already exists in the ftp server. thanx:)

johnluetke
  • 3,393
  • 1
  • 20
  • 25
new coder
  • 313
  • 2
  • 24

1 Answers1

0

NAnt does not support remote operations. If you are running on a Windows system, trying looking at PSExec

johnluetke
  • 3,393
  • 1
  • 20
  • 25