我正在尝试使用Python 2.7将文件上传到远程服务器,但是当我运行脚本时,远程FTP服务器上的文件始终在远程FTP服务器上调用test_0test_
,而不是{{1正如我所料。有什么想法吗?
test_0_13.pic.jpg
提前谢谢,
林
答案 0 :(得分:1)
啊,你的代码中只有一个拼写错误:
f.storbinary('STOR {}'.format(remote_file_base_name_prefix+str(counter)+remote_file_base_name_prefix), f_local)
应该是
f.storbinary('STOR {}'.format(remote_file_base_name_prefix+str(counter)+remote_file_base_name_suffix), f_local)