Count number of files on FTP server

2k Views Asked by At

How do I count number of zip files present in an FTP folder in SSIS?

Guide me to find the number of files present.

1

There are 1 best solutions below

0
On

With the WinSCP .NET assembly, just use the Session.EnumerateRemoteFiles method and call the Count extension method on the result:

var path = "/remote/path";
var files = session.EnumerateRemoteFiles(path, "*.zip", EnumerationOptions.None);
int count = files.Count();

See also Using WinSCP .NET Assembly from SQL Server Integration Services (SSIS).