Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: C# How to remote muti getfile with file abc*.txt

session.GetFiles("/tmp/abc*.txt", PathPoolFiles, true, transferOptions);
naigamo

C# How to remote muti getfile with file abc*.txt

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