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