session.GetFiles("/tmp/abc*.txt", PathPoolFiles, true, transferOptions);
On remote server have file
abc1.txt
aa1.txt
abc2.txt
How to get multi file only abc1.txt and abc2.txt with pattern abc*.txt
Please show sample code C# .NET
transferResult = session.GetFiles("/tmp/*", PathPoolFiles, true, transferOptions);
Thank