我想编写一个脚本将文件上传到FTP。
登录系统将如何工作?我正在寻找这样的东西:
ftp.login=(mylogin)
ftp.pass=(mypass)
以及任何其他登录凭据。
我想编写一个脚本将文件上传到FTP。
登录系统将如何工作?我正在寻找这样的东西:
ftp.login=(mylogin)
ftp.pass=(mypass)
以及任何其他登录凭据。
Answers:
使用ftplib
,您可以这样编写:
import ftplib
session = ftplib.FTP('server.address.com','USERNAME','PASSWORD')
file = open('kitten.jpg','rb') # file to send
session.storbinary('STOR kitten.jpg', file) # send the file
file.close() # close file and FTP
session.quit()
ftplib.FTP_TLS
如果FTP主机需要TLS,请改用。
要检索它,可以使用urllib.retrieve
:
import urllib
urllib.urlretrieve('ftp://server/path/to/file', 'file')
编辑:
要查找当前目录,请使用FTP.pwd()
:
FTP.pwd():返回服务器上当前目录的路径名。
要更改目录,请使用FTP.cwd(pathname)
:
FTP.cwd(pathname):设置服务器上的当前目录。
ftplib现在支持上下文管理器,因此我想它可以变得更加简单
from ftplib import FTP
from pathlib import Path
file_path = Path('kitten.jpg')
with FTP('server.address.com', 'USER', 'PWD') as ftp, open(file_path, 'rb') as file:
ftp.storbinary(f'STOR {file_path.name}', file)
无需关闭文件或会话
您很可能希望将ftplib模块用于python
import ftplib
ftp = ftplib.FTP()
host = "ftp.site.uk"
port = 21
ftp.connect(host, port)
print (ftp.getwelcome())
try:
print ("Logging in...")
ftp.login("yourusername", "yourpassword")
except:
"failed to login"
这会将您登录到FTP服务器。您在那里所做的一切取决于您。您的问题并不表示确实需要执行的任何其他操作。
试试这个:
#!/usr/bin/env python
import os
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('hostname', username="username", password="password")
sftp = ssh.open_sftp()
localpath = '/home/e100075/python/ss.txt'
remotepath = '/home/developers/screenshots/ss.txt'
sftp.put(localpath, remotepath)
sftp.close()
ssh.close()
SSHException: Error reading SSH protocol banner" when using ProxyCommand
在ftp上执行此路由时通常会出错。
我刚刚在这里回答了类似的问题,
恕我直言,如果您的FTP服务器能够与Fabric通信,请与我们联系。这比干生要好得多ftp
。
我有一个FTP帐户,dotgeek.com
因此我不确定这是否适用于其他FTP帐户。
#!/usr/bin/python
from fabric.api import run, env, sudo, put
env.user = 'username'
env.hosts = ['ftp_host_name',] # such as ftp.google.com
def copy():
# assuming i have wong_8066.zip in the same directory as this script
put('wong_8066.zip', '/www/public/wong_8066.zip')
将文件另存为fabfile.py
并在fab copy
本地运行。
yeukhon@yeukhon-P5E-VM-DO:~$ fab copy2
[1.ai] Executing task 'copy2'
[1.ai] Login password:
[1.ai] put: wong_8066.zip -> /www/public/wong_8066.zip
Done.
Disconnecting from 1.ai... done.
再一次,如果您不想一直输入密码,只需添加
env.password = 'my_password'
您可以使用以下功能。我还没有测试过,但是应该可以正常工作。记住目标是目录路径,其中源是完整的文件路径。
import ftplib
import os
def uploadFileFTP(sourceFilePath, destinationDirectory, server, username, password):
myFTP = ftplib.FTP(server, username, password)
if destinationDirectory in [name for name, data in list(remote.mlsd())]:
print "Destination Directory does not exist. Creating it first"
myFTP.mkd(destinationDirectory)
# Changing Working Directory
myFTP.cwd(destinationDirectory)
if os.path.isfile(sourceFilePath):
fh = open(sourceFilePath, 'rb')
myFTP.storbinary('STOR %s' % f, fh)
fh.close()
else:
print "Source File does not exist"
myFTP.storbinary('STOR %s' % f, fh)
什么地方% f
?
print ftp.pwd()
将显示您当前所在的路径。