In ant target I get a property, containing the list of directories to be included in further action (copying, filtering, etc.). It look like this:
directories=dir1, dir2, dir3
I need a way to convert this list to a fileset that selects all files in these directories.
I know I can use a script to generate pattern strings and then use it in the "include" or "exclude", but is there are a way to avoid scripts?