Directory Transfer: Multiple file mask
I'm working with VS2015 C# and I have following code.
// Upload files TransferOptions transferOptions = new TransferOptions(); transferOptions.TransferMode = tmde; // that will contain "*.jpg;|*/"; transferOptions.FileMask = jsonConfig.files_mask; SynchronizationResult syncResult = session.SynchronizeDirectories( SynchronizationMode.Remote, jsonConfig.local_path, jsonConfig.remote_path, false, false, SynchronizationCriteria.None, transferOptions);
Is there any way to add more than one?
Thanks in advance.