我正在尝试创建一个用于从FTP获取文件的Python脚本。它现在正在运行,但我在免费托管页面https://hosting.miarroba.com上测试了它。如果我将其与我的专用服务器FTP服务连接,它将失败
500命令不理解
我认为失败的命令是ftp.mlsd()
。我不知道我的服务器是否需要和特殊配置。
Code Python 3.5
def realizarConexion():
a_server = ""
a_user = ""
a_pass = ""
a_port =
# Conectarse con los métodos connect y login
try:
ftp = FTP()
ftp.connect(a_server, a_port, -999)
ftp.login(a_user, a_pass)
#ftp.dir()
estado = validaFecha()
if estado:
descargarFicheros(ftp)
else:
print("No existe una anterior fecha de respaldo configurada")
ftp.close()
except Exception as e:
print("Fallo al conectar con FTP %s: %s" %(a_server, e))
def obtenerFecha():
ultFecha = ""
try:
fDate = open("date.txt","r")
if fDate.mode == 'r':
ultFecha = fDate.read()
except Exception as e:
print("Sin fecha asignada!")
return ultFecha
def validaFecha():
estadoFecha = True
try:
fDate = open("date.txt","r")
if fDate.mode == 'r':
ultFecha = fDate.read()
print("fecha: %s" %ultFecha)
except Exception as e:
respaldo = input('No hay fechas configuradas, desea tomar la fecha actual como fecha de ultimo respaldo! - (Y / N): ')
if respaldo.lower() == "y":
asignarFechaCopia()
print("La asignación de la fecha se a ha generado con exito")
estadoFecha = True
elif respaldo.lower() == "n":
print("Copia de seguridad detenida!")
estadoFecha = False
else:
print("Copia de seguridad detenida!")
estadoFecha = False
return estadoFecha
def descargarFicheros(ftp):
try:
for file, parametros in ftp.mlsd():
if file != '.' and file != '..':
fechaCopia = obtenerFecha()[0:10]
horaCopia = obtenerFecha()[11:19]
fechaModif = datetime.datetime.strptime(parametros["modify"][0:-6],"%Y%m%d").date()
horaModif = datetime.datetime.strptime(parametros["modify"][8:14],"%H%M%S").time()
f1 = time.strptime(str(fechaCopia) + " " + str(horaCopia), "%Y-%m-%d %H:%M:%S")
f2 = time.strptime(str(fechaModif) + " " + str(horaModif), "%Y-%m-%d %H:%M:%S")
if f2 > f1:
print("Se ha actualizado el fichero => %s" %file)
ftp.retrbinary("RETR " + file ,open(file, 'wb').write)
else:
print("%s Archivo sin cambios %s %s " %(fechaCopia,fechaModif,file))
print("Proceso finalizado!! Se ha actualzado la fecha de copiado de archivos.")
asignarFechaCopia()
except Exception as e:
print("Error: %s" %e)
def asignarFechaCopia():
t = time.strftime("%Y-%m-%d %H:%M:%S")
fDate = open("date.txt","w+")
fDate.write(t)
fDate.close()
#Inicialización del Script
realizarConexion()
答案 0 :(得分:0)
许多服务器不支持MLSD
命令,因为它是一个相对较新的命令(在FTP术语中)。特别是IIS没有。
如果您只需要文件名,请改用FTP.nlst
。
如果您需要文件属性,则必须改为使用FTP.dir
(或FTP.retrlines
)并解析返回的列表。
另见How do I parse a listing of files to get just the filenames in Python?
答案 1 :(得分:-1)
您可以使用wireshark或tcpdump通过过滤端口21来查看以纯文本格式发送到服务器的内容。 你应该能够确切地看到发生了什么以及“500命令不被理解”的来源。