Thanks :)
- Coraz
TransferOptions transferOptions = new TransferOptions();
transferOptions.FileMask = "*.doc;*.docs";
session.GetFiles("/remote/path/*", @"c:\local\path\", false, transferOptions).Check();
.doc
or .docx
, then download them without regards to folder structure (I just want the files, not the folders). I figured after a bit of search that I would need .NET Assembly Line to accomplish this. Looking a bit around in this forum I found https://winscp.net/forum/viewtopic.php?t=14392, but I can't figure out a way to insert a filemask (or where to put it) and the pass the list output to the .NET equivalent of mget
(I think I need to use this).