FTP acces via a special node?

Hey,

Hope all is well.

How / where would I configure a node to acces files on a FTP server?

D

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.

Hey @Donna!

To access an FTP server you’ll want to create a custom Python node and use Python’s built-in ftplib library. The Run Code node isn’t recommended here since it would expose your FTP credentials inside the pipeline.

Suggested Node Configuration Parameters

  • Host (string): FTP server address

  • Port (number): FTP port

  • Username (string): FTP username

  • Password (string): Ideally hard-code this inside the node’s code so it isn’t exposed

  • Remote Path (string): Directory or file path you want to read from the server

From there, your custom node can handle connecting, navigating directories, and fetching files.

Hope this helps!