I am wondering if this is possible to do in
Ant. I want do produce a zip file for each directory that I encounter under an umbrella directory by going through all the folders under the umbrella folder recursively. e.g.
If I have the following structure:
C:\Umbrella_Folder\ABC\file1
C:\Umbrella_Folder\ABC\file2
C:\Umbrella_Folder\DEF\file3
C:\Umbrella_Folder\DEF\file4
With the above structure, I want to produce ABC.zip (which includes file1 and file2) and DEF.zip (which includes file3 and file4). Can this be done? Thanks a lot in advance.