Sync contents of folder and not subfolders

Get help for specific problems
Posts: 19
Joined: 5 Nov 2010

sf2010

Apologies if I'm dumb not understanding the manual or finding previous topic.

I have a folder tree:
\root
\root\sub1a\sub1b
\root\sub2a\sub2b
\root\sub3a\sub3b
I have include filter (working fine):
`\sub1a\*`

And I want to add another include filter but this time only to sync contents of sub3a but NOT sub3b or its contents.

How please?
User avatar
Posts: 2300
Joined: 22 Aug 2012

Plerry

Add \sub3a\* to the include filter,
and
add \sub3a\sub3b\* to the exclude filter

If you only want to include all files in sub3a, but none of the sub3a subfolders,
you should add \sub3a\*\* to the exclude filter, instead of \sub3a\sub3b\*
Posts: 19
Joined: 5 Nov 2010

sf2010

Perfect.

I used the `*\*` filter to exclude the subfolder names too.

Many thanks.