问一下Ange-ftp的事,好像不能用

我按书上写的/username@systemname:/directory,可就是死活连不上去,请问下有没有Ange-ftp的取代方案

我在windows下用,发现ange-ftp-start-process有硬编码成utf-8-auto的问题,改下这个函数后面就能用了。下面这段注释掉,然后把read,write编码换成gbk-dos就正常了。

 (when (eq system-type 'windows-nt)
      ;; force ftp output to be treated as DOS text, otherwise the
      ;; output of "help foo" confuses the EOL detection logic.
      (set-process-coding-system proc 'raw-text-dos)
      (process-send-string proc "help foo\n"))