Hi I need to find the folder named "capital" under the basedir and prepare filelist with extension *.txt under capital folder.
For this I used <exec> task and gave like following, but its not accepting the relative path. This path varies according the base folder name we set in properties.. so what ever dir name given in properites file, it should search down for folder named "Capital" and store the list of files with extension *.txt. <exec dir="**/Capital/" executable="cmd"> <arg line="/c dir *.txt /s /b>a.txt"/> </exec> but relative path is not getting resolved.. Then i tried using properties like <property name="${build.path} location="${basedir}/**/Capital"/> and in exec task <exec dir="${build.path}" ...> but this path is also not getting resolved. Please help me to pass relative path to the <exec> task. Thanks -- View this message in context: http://old.nabble.com/%3Cexec%3E-task-not-accepting-relative-path-tp26141943p26141943.html Sent from the Ant - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org