Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1031291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T13:54:15+00:00 2026-05-16T13:54:15+00:00

It sounds a little far fetched to me, but is there an ANT task

  • 0

It sounds a little far fetched to me, but is there an ANT task for watching a directory for changes and then running a particular ANT class when the directory changes?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T13:54:16+00:00Added an answer on May 16, 2026 at 1:54 pm

    If files can only be added to or changed in the watched directory, then you can use this simple OutOfDate task from antcontrib.

    <property name="watched-dir.flagfile"
      location="MUST be not in watched dir"/>
    <outofdate>
      <sourcefiles>
        <fileset dir="watched-dir"/>
      </sourcefiles>
      <targetfiles>
        <pathelement location="${watched-dir.flagfile}"/>        
      </targetfiles>
      <sequential>
    
        <!--Tasks when something changes go here-->
    
        <touch file="${watched-dir.flagfile}"/>
      </sequential>
    </outofdate>
    

    If files can disappear from the watched-dir, then you have more complicated problem, that you can solve by creating shadow directory structure of the watched dir and checking if its consistent with the watched-dir. This task is more complex, but I’ll give you a script to create a shadow directory, as it is not straight forward:

    <property name="TALK" value="true"/>
    <property name="shadow-dir"
      location="MUST be not in watched dir"/>
    
    <touch
      mkdirs="true"
      verbose="${TALK}"
    >
      <fileset dir="watched-dir">
        <patterns/>
        <type type="file"/>
      </fileset>
    
      <!-- That's the tricky globmapper to make touch task work -->
      <globmapper from="*" to="${shadow-dir}/*"/>
    </touch>
    
    <!--
      Due to how touch task with mapped fileset is implemented, it 
      truncates file access times down to a milliseconds, so if you 
      would have used outofdate task on shadow dir it would always 
      show that something is out of date.
    
      Because of that, touching all files in ${shadow-dir} again fixes
      that chicken and egg problem.
    -->
    <touch verbose="${TALK}">
      <fileset dir="${shadow-dir}"/>
    </touch>
    

    With shadow directory created, I’ll leave the task of checking directory consistency as an exercise for the reader.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know it sounds a little stupid but is there a way to prove
Maybe this sounds a little bit crazy, but I need to come up with
I realize this sounds a little crazy, but I'm working on a project for
Sorry if this question sounds a little silly, but I am not sure what
I know it sounds a little bit strange, but I want a javascript function
I know this sounds a little ridiculous, but I'm just honestly wondering how I
I know this sounds a little bit specific but I was just wondering where
Sounds a little stupid, but I need help on my toString() method and it
OK, that question sounds maybe a little confusing so I'll try to explain it
This sounds funny..just a little experiment. i wanted to simulate a drag drop of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.