我正在使用CFFTP FTP到远程服务器并尝试获取文件。我知道该文件存在,因为我可以使用本机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 .
如何告诉它不要附加用户名?