Argh! Need multiple-select ${resource_loc}! [message #75787] |
Wed, 08 June 2005 16:03 |
Eclipse User |
|
|
|
Originally posted by: velocd.gmail.com
${resource_loc} is great for selecting one item in the navigator window,
but what about multiple?
I created a simple FTP snippet for Ant that will copy the selected file,
${resource_loc}, then FTP it to my server. But FTPing one file at a time
is foolhardy.
Example of script:
// ${eclipse.file} = ${resource_loc}
<project name="Portal" default="dist" basedir=".">
<description>Portal operations for FTP, etc.</description>
<target name="dist" description="FTP development files to the TEST
server.">
<copy file="${eclipse.file}" todir="Z:\eclipse\env" />
<ftp server="mysite.com"
remotedir="/"
userid="myuser"
password="mypass"
depends="yes">
<fileset dir="Z:\eclipse\env">
<filename name="*" />
</fileset>
</ftp>
</target>
</project>
Is there any way to get multiple-selections?
Thanks in advance!
- Mike
|
|
|
Powered by
FUDForum. Page generated in 0.09541 seconds