You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Mario Madunic <Ma...@newflyer.com> on 2010/08/12 19:38:20 UTC

possible to recurse through directory to see if a file exists in a subdirectory

(Using ANT 1.8, WinXP)

I need to find out if a certain file with a standard naming convention exists in a subdirectory. I would like to either have the directory path output to either the screen or a txt file. Either is okay.

More details.

I'll have a root dir I'm working with

Files/

And beneath this are 900+ subdirs. Most have no spaces in their names but around 50 do.

files/1999 (example)

Now the 1999 dir has subdirs but they are all standard between all the subdirs of files.

files/1999/pub/1999p01.txt

Other examples
files/1998_1997/pub/1998p01.txt
files/1996 (see 1995)/pub/ (does not contain any files)
files/1995/pub/1995p01.txt

The only part of the file name to change is all the chars before the p01.txt

Any help will be appreciated.

Thanks

Marijan (Mario) Madunic
Publishing Specialist
New Flyer Industries

--------------------------------------------------------------------
Please consider the environment before printing this e-mail.

CONFIDENTIALITY STATEMENT: This communication (and  any and all information or material transmitted with this communication) is confidential, may be privileged and is intended only for the use of the intended recipient. If you are not the intended recipient, any review, retransmission, circulation, distribution, reproduction, conversion to hard copy, copying or other use of this communication, information or material is strictly prohibited and may be illegal. If you received this communication in error or if it is forwarded to you without the express authorization of New Flyer, please notify us immediately by telephone or by return email and permanently delete the communication, information and material from any computer, disk drive, diskette or other storage device or media. Thank you.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


AW: possible to recurse through directory to see if a file exists in a subdirectory

Posted by Ja...@rzf.fin-nrw.de.
>I need to find out if a certain file with a standard naming 
>convention exists in a subdirectory. I would like to either 
>have the directory path output to either the screen or a txt 
>file. Either is okay.

Quick idea is something like

<pathconvert>
    <fileset dir="" includes="the-search-file"/>
    <mapper/>
</pathconvert>

You have to search for the right mapper ...


Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org