尝试镜像文件夹时发生Lftp 550错误。菲利齐拉没事

尝试镜像文件夹时发生Lftp 550错误。菲利齐拉没事,ftp,ftps,lftp,Ftp,Ftps,Lftp,我制作此脚本是为了在远程FTP中下载一个带有隐式SSL的文件夹: open -d ftps://USER:"PASS"@ftp.xxx.tld:990 mirror --verbose --continue /remote/folder $HOME/destination/folder; bye 它连接,功能如下: <--- 220-Microsoft FTP Service <--- 220 FTP SOMECOMPANY ---> FEAT <--- 211-Ext

我制作此脚本是为了在远程FTP中下载一个带有隐式SSL的文件夹:

open -d ftps://USER:"PASS"@ftp.xxx.tld:990
mirror --verbose --continue /remote/folder $HOME/destination/folder;
bye
它连接,功能如下:

<--- 220-Microsoft FTP Service
<--- 220 FTP SOMECOMPANY
---> FEAT
<--- 211-Extended features supported:
<---  LANG EN*
<---  UTF8
<---  AUTH TLS;TLS-C;SSL;TLS-P;
<---  PBSZ
<---  PROT C;P;
<---  CCC
<---  HOST
<---  SIZE
<---  MDTM
<---  REST STREAM
<--- 211 END

无济于事。有什么建议吗?谢谢

您可能必须在此处使用“设置ftp:使用TVFS是”强制TVFS。即使服务器忘记宣布它们的支持,它也支持类Unix路径

由于ftp服务器托管在Windows环境中,我不得不使用\而不是/来定义路径。

没有解决问题,但有助于找到它!谢谢
<--- 257 "/" is current directory.      
---> PBSZ 0
---- CWD path to be sent is `/remote/folder'
<--- 200 PBSZ command successful.
---> CWD remote
<--- 550 Access is denied. 
mirror: Access failed: 550 Access is denied.  (/remote/folder)
---> CWD folder
<--- 550 The system cannot find the file specified. 
---> QUIT
lftp -e "set ftp:use-allo false; set ftp:passive-mode true; set ftp:prefer-epsv false;...