cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
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

Rishabh264
Honored Contributor II

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)

View solution in original post

2 REPLIES 2

Rishabh264
Honored Contributor II

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)

Thanks will check this snippet @Rishabh Pandey​