废话不多说,直接改官方源码
经过跟踪,发现直接用了Indy8BitEncoding这个加密,我不加密行不行呢?
IdFTP.pas :
FListResult.LoadFromStream(LDest, Indy8BitEncoding);
改
FListResult.LoadFromStream(LDest);
去掉加密方式,果然可以
下面两个不用管
IdCompilerDefines.inc (HAS_TEncoding)
IdFTPListParseBase.pas
废话不多说,直接改官方源码
经过跟踪,发现直接用了Indy8BitEncoding这个加密,我不加密行不行呢?
IdFTP.pas :
FListResult.LoadFromStream(LDest, Indy8BitEncoding);
改
FListResult.LoadFromStream(LDest);
去掉加密方式,果然可以
下面两个不用管
IdCompilerDefines.inc (HAS_TEncoding)
IdFTPListParseBase.pas