Tagged Questions
15
votes
1answer
7k views
How can I print a fileset to a file, one file name per line?
I have a populated fileset and I need to print the matching filenames into a text file.
I tried this:
<fileset id="myfileset" dir="../sounds">
<include name="*.wav" />
...
8
votes
1answer
1k views
Converting an Ant fileset to multiple apply args
I have some files:
dir/foo.txt
dir/bar.txt
dir/foobar.txt
In an Ant apply task, I want to pass the list of files as arguments:
<target name="atask">
<apply executable="${cmd}" ...
3
votes
1answer
512 views
Ant: using Filelist as Fileset in Uptodate?
a target of build.xml creates a Zip file. To avoid creating the Zip if no file has been updated, I'd like to check for updates beforehand. AFAIK, "uptodate" is the task to use.
Here is the relevant ...
3
votes
1answer
931 views
Copy content of subfolders with Ant
How can I copy content of all subfolders of given folder using Ant?
i.e. I have such folder structure
folder/
folder/sub1/1.txt
folder/sub1/f1/1.txt
folder/sub2/2.txt
...
I don't know exact ...
3
votes
1answer
981 views
How to split an fileset in Ant into multiple sets
I have a set of files that I am picking up in an ant build, which I want to split into equal sized sub sets.
What is a good simple way to do this in Ant without adding custom tasks.
Example:
...
3
votes
1answer
231 views
How do I apply targets to a sublist of projects in Ant?
I have a bunch of sub projects in various directories. I want to specify them as a list, then for a given target I want to go through each one, one-by-one and call subant.
I've got something like:
...
2
votes
2answers
172 views
Ant unzip task and only extracting files based on another directory
I have a zip file and, separately, a directory that contains some files. From the zip file I'd like to extract only those files that exist in the directory (performing a filename transformation on ...
2
votes
1answer
72 views
create a fileset of all files matching a pattern, excluding files with a specific sibling file
I would like to create a fileset of files matching a specific pattern, but exclude from this set any files which have a specific other file in the same directory.
E.g., I would like a fileset which ...
2
votes
1answer
1k views
How can I echo a filename twice using 'FileSet' and 'PathConvert'?
I have this simple Ant task that lists all '.png' files in a folder:
<target name="listimages">
<!-- Assume files a A and B -->
<fileset id="dist.contents" dir="${basedir}">
...
2
votes
3answers
507 views
Problems with FileSet in Ant script?
I am using Ant script to generate javadoc and I just only wnt Ant to look for some classes based on a certain pattern, so I wrote:
<javadoc access="public" source="1.6" sourcepath="src" ...
2
votes
6answers
8k views
How to exclude a directory from ant fileset, based on directories contents
How can I create an ant fileset which excludes certain directories based on the contents of the directory?
I use ant to create a distribution jar which has each localization in separate directories, ...
2
votes
1answer
2k views
How do I select subdirectories in ant using a FileSet?
I'm using ant 1.6.2 and am trying to set up a task that will compare a source and a target directory, identify all the subdirectories that exist in the source directory and delete liked named ...
1
vote
3answers
82 views
How to add all files in a fileset as an argument to the exec task?
I'm trying to provide all *.cpp files in a folder to the c++ compiler through ant. But I get no further than ant giving gpp a giant string containing all the files. I tried to prove it by using a ...
1
vote
1answer
74 views
Create a fileset from a comma-separated list in a property without losing order
I use a specified property to create fileset:
<property name="cases" value="B.java,A.java,C.java" />
<fileset id="casesToBeRunning" dir="${src}" includes="${cases}" />
When ...
1
vote
2answers
98 views
Use Ant RegEx to find referenced CSS files and then utilize that list as a FileSet
I have a CSS file that I use for testing. It @imports all of my stylesheets:
@import "css/structure.css"
@import "css/typography.css"
@import "css/forms.css"
This lets me test the styling and ...
1
vote
2answers
211 views
How do I avoid symlinks using an Ant FileSet?
I have a directory tree that includes a symlink to . (the current directory). When I attempt to iterate over this using an Ant FileSet, I get the following error:
Caught error while checking for ...
1
vote
1answer
213 views
Using a Clover <fileset> on Hudson
We're trying to limit Clover to a certain package and therefore have a <fileset> definition in our Ant build file. Everything works fine from the command line (when we specify our known Ant ...
1
vote
2answers
685 views
How do I make a fileset from a comma-separated list of directories in Ant?
In an Ant target I get a property, containing the list of directories to be included in further action (copying, filtering, etc.). It looks like this:
directories=dir1, dir2, dir3
I need a way to ...
1
vote
4answers
353 views
Ant Fileset Expansion doesn't work
I get a very confusing reaction from my ant build-file and I'm wondering whether I'm just not clever enough or this might actually be a bug.
I've got the following property set globally in my ...
1
vote
1answer
665 views
Ant: Concatenate properties from a fileset
I am trying to do the following in ANT but I am stuck.
Read which projects are installed in my project workspace.
workspace
buildtools
build.xml
project1
build.xml
...
1
vote
1answer
189 views
How to exclude a directory which is already included in an Ant FileSet?
I am using the jar task in ant and wish to exclude a certain directory. The structure of the directories is something like:
food
|_ fruits
|_ apples
|_ bananas
(having been made ...
1
vote
1answer
49 views
FIlter directories based on timestamp
My ultimate goal is the following : delete all content from a directory that is older than a given date.
What I'm willing to achieve is removing all backup directories that are more than 7 days old ...
1
vote
2answers
920 views
Iterating through a directory with Ant
Let's say I have a collection of PDF files with the following paths:
/some/path/pdfs/birds/duck.pdf
/some/path/pdfs/birds/goose.pdf
/some/path/pdfs/insects/fly.pdf
...
1
vote
2answers
111 views
File Enumeration with ANT
I feel like I'm missing something obvious at the moment. I want to collect a set of dirs / files together in ANT. I know I can do it using a fileset with an optional patternset inside it, but that ...
1
vote
1answer
262 views
Ant fileset confusion
Let's say I have this in one of my targets:
<path id="files">
<fileset dir="${env.DIRECTORY}" casesensitive="false">
<include name="**/*.html"/>
<exclude ...
0
votes
0answers
35 views
Update fileset using ant dynamically
I would like to create a jar file dynamically depending on selected java modules
Here is the part of the ant script which does that.
<property name="modules.selected" value="A,C,F" />
<for ...
0
votes
2answers
47 views
Why does ant copy old file contents?
I'm having an extremely strange problem with ant. This snippet produces a set of files with the correct names and timestamps, but with obsolete contents.
<target name="inflate-workspace">
...
0
votes
1answer
322 views
Turning an ant propertyset into a fileset
I have a propertyset, where the values of the properties in the set specify a list of files I want to include in a jar. But I can't seem to figure out how to build a jar from a propertyset, only a ...
0
votes
2answers
519 views
Ant fileset's “dir” missing from absolute path when using a mapper
I've been trying to write an Ant task to "compile" Sass scripts in my project using the apply task but I kept getting a "No such file or directory" error. I thought it might have been caused by ...
0
votes
2answers
330 views
Ant: use include and exclude together
OK, this seems like it should be really simple. I'm using Apache Ant 1.8, and I have a target which does:
<delete file="output/program.tar.bz2"/>
<tar basedir="input" ...
0
votes
3answers
275 views
Compiler warnings plugin: Fileset excludes
We are using Hudson as our build machine and I am trying to configure the excludes fileset for the Compilier Warnings plugin. Hudson parses the build log to determine warnings/errors and our Clover ...
0
votes
1answer
2k views
ANT task to move and rename, files and folders, recursively
I have have a folder structure like so:
/PROJECT/PROJECT.html
/PROJECT/PROJECT_readme.txt
/PROJECT/PROJECT.css
/PROJECT/PROJECT.js
/PROJECT/abc_PROJECT_def.txt
/PROJECT/something.js
...