>1.     How to unzip a folder on a remote server (Windows NT), 
>I am unable
>to nest it inside of FTP.
>
>I am zipping a folder on local machine and FTP'ing it to the 
>server, but I need to unzip it in tmp folder and move the 
>unzipped folder to the right path on the server. Does REXEC 
>work for windows box?

Try <sshexec> - its more secure ...



>2.     I want to read the txt or doc which has full path and 
>file names of
>files to be pulled from VSS.
>
>I need to feed the contents of this txt file as input to the 
>vsspath, I tried using LOADFILE and saving it as property, but 
>it reads only first line and not the subsequent. Does ANT have 
>a for loop kind of command or any other to this kind of job.


<loadfile> should load the whole file into a property.
Ant-Contrib has a <for> which you can feed with that value.

    <loadfile property="list" file="..."/>
    <ac:for param="file" list="list" delimiter=";">
        <sequential>
            <echo> @{file} </echo>
        </sequential>
    </ac:for>



Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to