Trillo Workbench Java SDK
  • Introduction
    • Sample Example
  • BaseApi (Basic APIs)
  • LogApi (Logging APIs)
  • DSApi (Database APIs)
    • Overview
    • Retrieve APIs
    • Create and Update API
    • Delete APIs
    • Empty Table
    • Sample Functions Using API
  • FuncApi (Function APIs)
  • TaskApi (Task APIs)
  • CacheApi (Memory Cache APIs)
    • Delete APIs
    • Create and Update API
    • Retrieve APIs
  • StorageApi
  • CallLogger (Logging Level APIs)
  • CommandApi
  • OAuth1Api
  • Google Cloud APIs
    • BigQueryApi (BigQuery APIs)
    • GCSApi (Cloud Storage APIs)
    • GCPAuthApi
    • GCPRestApi
    • GCPTokenInfo
  • Metadata API (MetaApi)
    • Create and Update API
    • All Retrieve-Only
  • UMApi (User, Tenant, Roles APIs)
  • HttpApi (HTTP APIs)
  • SFTPApi
  • FileUtil
  • CSVApi
  • EmailApi (Email APIs)
Powered by GitBook
On this page
  • get
  • put
  • ls

Was this helpful?

SFTPApi

get

Description...

SFTPApi.get(String server, String userName, String password, 
      String remoteFile, String localFile)    
or

SFTPApi.get(String server, int port, String userName, String password, 
      String remoteFile, String localFile)

Parameters

server
userName
password
remoteFile
localFile
port

Returns

Result

put

Description...

SFTPApi.put(String server, String userName, String password, 
      String remoteFile, String localFile) 
or

SFTPApi.put(String server, int port, String userName, String password, 
      String remoteFile, String localFile)

Parameters

server
userName
password
remoteFile
localFile
port

Returns

Result

ls

Description...

SFTPApi.ls(String server, String userName, String password, 
      String remoteFolder) {  
or

SFTPApi.ls(String server, int port, String userName, String password, 
      String remoteFolder)
or

SFTPApi.ls(String server, String userName, String password, 
      String remoteFolder, String extensions)
or

SFTPApi.ls(String server, int port, String userName, String password, 
      String remoteFolder, String extensions)

Parameters

server
userName
password
remoteFolder
port
extensions

Returns

Result

Last updated 1 year ago

Was this helpful?