I have some tree structure:
/a
/a/a
/a/b
/b/
..
/a/z
/b
.. (thousands of folders)
/z
How can I control just /a/a and /b folders?
What exclude file should be?
The way we use now is:
/a/*
/c/
.. (thousands of folders)
/z/
!/a/a
But it is very not nice looking and hard for maintenance...