Remove-FTP Cmdlet
Deletes FTP data.
Syntax
Remove-FTP [parameters]
Remarks
The Remove-FTP cmdlet allows you to use a syntax similar to SQL DELETE statements to delete FTP data.
$conn = Connect-FTP -RemoteHost 'MyFTPServer' Remove-FTP -Connection $conn -Table "Notes" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-FTP -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-FTP -Connection $conn -Table Notes -Where "FilePath = '/documents/doc.txt'" | Remove-FTP