Documentation
FTP and FTPS workflows
How Transferetto approaches classic FTP and FTPS automation.
Use the FTP and FTPS lane when you need compatibility with classic endpoints, partner systems, appliances, or hosting environments that still expose FTP-family protocols.
What the lane covers
Connect-FTPwith credentials, profiles, encryption options, and proxy settings- file upload and download workflows
- directory transfer workflows
- remote metadata such as item info, file size, modified time, and working directory
- managed stream sessions for chunked reads and writes
Good fit
- legacy or appliance endpoints that only expose FTP or FTPS
- shared-hosting workflows where you need to inspect
/public_htmlstyle content - scripts that need remote file metadata before deciding what to transfer
- workflows where streaming a file is more natural than staging a whole temp file locally
Operating pattern
Start with a connection, confirm the working directory or target path, inspect any metadata you need, then choose the file, directory, or stream path that matches the task.
This usually means:
Connect-FTP- optional
Get-FTPWorkingDirectory,Set-FTPWorkingDirectory,Get-FTPItem, orGet-FTPModifiedTime - transfer or stream cmdlets
Disconnect-FTP
Why streams matter
Transferetto does not force every FTP workflow into whole-file upload or download operations. Managed stream cmdlets let a script write and read remote content incrementally, which is useful for generated text, inspection, and automation pipelines.