Update ftp_send_receive.py

This commit is contained in:
Deepak Nautiyal 2017-11-13 00:58:37 +05:30 committed by GitHub
parent d97b34d01c
commit c522ddae84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
"""
"""
File transfer protocol used to send and receive files using FTP server.
Use credentials to provide access to the FTP client
@ -6,17 +6,17 @@
Create a seperate user and provide access to a home directory of the user
Use login id and password of the user created
cwd here stands for current working directory
"""
"""
from ftplib import FTP
ftp = FTP('xxx.xxx.x.x') """ Enter the ip address or the domain name here """
ftp.login(user='username', passwd='password')
ftp.cwd('/Enter the directory here/')
"""
"""
The file which will be received via the FTP server
Enter the location of the file where the file is received
"""
"""
def ReceiveFile():
FileName = 'example.txt' """ Enter the location of the file """
@ -25,10 +25,10 @@ def ReceiveFile():
ftp.quit()
LocalFile.close()
"""
"""
The file which will be sent via the FTP server
The file send will be send to the current working directory
"""
"""
def SendFile():
FileName = 'example.txt' """ Enter the name of the file """