Create fileset excluding all files directly under base directory

Hi
 
Is it possible to create a fileset that will include all the directories (with their content) that under the base directory
excluding all files that are directly under the base directory ?
( I don't want to specify each one if the directories I want to include since there are a lot of them and their name is changing and same for the files I want to exclude)
i.e.
C:\test\1.txt - exclude
C:\test\2.dll - exclude
C:\test\AAA\a.txt - include
C:\test\BBB\a.txt - include
C:\test\BBB\CCC\a.txt - include

Hi Elad,

Yes, you can achieve this by specifying a ‘Filter’ that only matches file which are under a sub-directory of the root folder. Following on from the example you posted, the filter will need to be configured with the following options:

Text: \test\.*\
Use Regular Expression: Checked

Regards,
Paul.

Thanks, it working great.