<div class="gmail_quote">On Mon, Oct 25, 2010 at 1:18 AM, ml ml <span dir="ltr">&lt;<a href="mailto:mliebherr99@googlemail.com">mliebherr99@googlemail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Why does it not transfer the files recursively?<br></blockquote><div><br></div><div>Because your exclude (- *) is not anchored, so it matches the deeper files.  You can either anchor it (- /*) or specify your prior includes with &quot;**&quot; or &quot;***&quot; components.  e.g. &quot;+ /path/***&quot; would include both path (+ /path/) and its contents (+ /path/**).</div>
<div><br></div></div>..wayne..<br>