3 Antworten
- Neueste
- Die meisten Stimmen
- Die meisten Kommentare
1
Hi! As you rightly noted, SFTP connector currently does not support a delete operation. However, the AWS Transfer Family service team is working on a roadmap to introduce the same - could you please reach out to the service team via AWS support or your account team to discuss your requirements?
0
This should now be resolved via a recent update to the service
If you still have issues, please raise a support ticket or contact your account team.
beantwortet vor 6 Monaten
-1
Can you check the rm command of the CLI ?
Here’s an example of how it might look:
sftp> cd /remote/directory
sftp> rm file_to_delete.txt
Or you can remove the file from the S3 ?
aws s3 rm /path/of/your/file
Relevanter Inhalt
- AWS OFFICIALAktualisiert vor 4 Jahren

My concern is about Transfer Family Connectors which is used as an SFTP client. The SFTP server is not hosted into AWS, it's a remote server owned by an external partner.
With AWS CLI, I don't find any API to delete files on the remote sftp server : https://awscli.amazonaws.com/v2/documentation/api/latest/reference/transfer/index.html
We can list a remote directory (API start-directory-listing), We can start a transfer, push or pull (API start-file-transfer), But nothing to delete the file on the remote server after the transfer complete.