'OPTS UTF8 ON': command not unde

2021-06-07  本文已影响0人  听你讲故事啊

背景

go 操作 ftp , 使用 github.com/jlaffaye/ftp这个库
ftp server 是客户提供的,我们无法进行配置

问题复现

登录时报错,错误如题


image

解决方案

添加参数,禁用 utf8

ftp.Dial("ftp.example.com:21", ftp.DialWithTimeout(5*time.Second), ftp.DialWithDisabledUTF8(true))
image

原因

ftp Server 不支持 utf-8 编码, 泪目

上一篇 下一篇

猜你喜欢

热点阅读