美文网首页
'OPTS UTF8 ON': command not unde

'OPTS UTF8 ON': command not unde

作者: 听你讲故事啊 | 来源:发表于2021-06-07 22:54 被阅读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 编码, 泪目

相关文章

网友评论

      本文标题:'OPTS UTF8 ON': command not unde

      本文链接:https://www.haomeiwen.com/subject/tugreltx.html