You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Adam Rzadkowolski <ad...@axit.pl> on 2003/02/17 16:49:25 UTC

a question about list of files in some-directory

>Hello everyone,
>i would like to get list of files in some directory to have a possibility 
>to use it like example below
>
><xmlproperty file="${DBRootDir}/${DBUserName}/tables/${fileName}"/>
><sql driver="oracle.jdbc.OracleDriver" 
>url="jdbc:oracle:thin:@10.10.10.52:1521:dbmain" userid="${userName}" 
>password="${userPass}" print="false">
>         ${xml.table}
></sql>
>i would like to have real_file_name instead ${fileName}.
>
>what means for all files in some directory parse xml file, set some tag as 
>reachable property
>then execute a content of that property.
>
>any ideas?
>Adam