Re: How to Sync and Remove using C#
Cannot you just do with a simplesession.GetFiles(source, target, true)
? Note theremove = true
argument.
Prikryl,
Thanks for the reply - that's exactly what I was looking for.
Cannot you just do with a simplesession.GetFiles(source, target, true)
? Note theremove = true
argument.
session.GetFiles(source, target, true)
? Note the remove = true
argument.