Directory Transfer: Multiple file mask
Hi guys. Thanks for this awesome library :) its helping a lot.
Im working with VS2015 c# and I have following code.
But sadly it works only with the last or only one file mask.
Is there any way to add more than one?
Thanks in advance.
Im working with VS2015 c# and I have following code.
// Upload files TransferOptions transferOptions = new TransferOptions(); transferOptions.TransferMode = tmde; transferOptions.FileMask = jsonConfig.files_mask; // that will contain "*.jpg;|*/"; SynchronizationResult syncResult = session.SynchronizeDirectories(SynchronizationMode.Remote, jsonConfig.local_path, jsonConfig.remote_path, false, false, SynchronizationCriteria.None, transferOptions);
But sadly it works only with the last or only one file mask.
Is there any way to add more than one?
Thanks in advance.