Re: Filemask issue (5.0.6 beta)
Your solution seems to be working. The problem is that I don't always know the root folder's name, I usually have absolute path. And it only work in the way you put it, */dirname/*. Nice job to get the folder name in dos batch.
It works with absolute path too. But with absolute path, it makes difference, if it is local or remote absolute path. It depends on what kind of synchronization you are doinf.
Correct me if I'm wrong, but according to the documentation, my first filemask should do what I want, shouldn't it?
No.
The */dir_01/;*/dir_02/| says, include dir_01 and dir_02 folders and all files (it's implicit, when no file include mask is specified). The | is redundant, as well as */ before folder names. dir_01/;dir_02/ would do the same thing.
The */dir_01/;*/dir_02/|*/* says, include dir_01 and dir_02 folders, exclude all files. Again */ is redundant. dir_01/;dir_02/|* would do the same thing