Select-FTP Cmdlet
Searches FTP data.
Syntax
Select-FTP [parameters]
Remarks
The Select-FTP cmdlet allows you to use a syntax similar to SQL SELECT statements to search FTP data.
$conn = Connect-FTP -RemoteHost 'MyFTPServer' Select-FTP -Connection $conn -Table "Notes" -Columns @("Filesize","Filename") -Where "FilePath='/documents/doc.txt'"