cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Connecting Databricks with FTP server

Prototype998
New Contributor III

hey i want to know how to connect Databricks with the FTP server ??? any help would be really appreciated

1 ACCEPTED SOLUTION

Accepted Solutions

Rishabh-Pandey
Esteemed Contributor

hey @Punit Chauhanโ€‹ , refer this code to connect with FTP server

Host="" 
 
Login=""
 
Passwd=""
 
ftp_dir=""
 
ftp = ftplib.FTP(Host)
ftp.login(Login,Passwd)
ftp.cwd(ftp_dir)
files=ftp.nlst(ftp_dir)
print(files)

Rishabh Pandey

View solution in original post

2 REPLIES 2

Rishabh-Pandey
Esteemed Contributor

hey @Punit Chauhanโ€‹ , refer this code to connect with FTP server

Host="" 
 
Login=""
 
Passwd=""
 
ftp_dir=""
 
ftp = ftplib.FTP(Host)
ftp.login(Login,Passwd)
ftp.cwd(ftp_dir)
files=ftp.nlst(ftp_dir)
print(files)

Rishabh Pandey

Thanks will check this snippet @Rishabh Pandeyโ€‹ 

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now