Reputation: 313
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:)
Upvotes: 0
Views: 585
Reputation: 3483
NAnt does not support remote operations. If you are running on a Windows system, trying looking at PSExec
Upvotes: 0