我正在使用 CFFTP 进入远程服务器并尝试获取文件。我知道该文件存在,因为我可以使用本机 Windows FTP 命令行来获取它。原来的命令行是这样的:
get 'ur.urpyt005.series23.extract' C:\downloads\remote.txt
我将其转换为 ColdFusion 任务并使用以下内容获取文件:
<cfftp action="getfile"
server="ftp.remote.com"
username="remoteuser"
password="*******"
remotefile="ur.urpyt005.series23.extract"
localfile="C:\downloads\remote.txt"
stoponerror="true" />
当我运行脚本时,FTP 服务器将用户名添加到我要求的文件中。我收到以下错误:
Error: 550 Data set REMOTEUSER.UR.URPYT005.SERIES23.EXTRACT not found .
我怎么能告诉它不要附加用户名?