我不能把文件与cfftp,任何想法为什么?

时间:2013-06-21 09:16:02

标签: coldfusion ftp

我正在尝试创建一个函数,每天将两个xml文件上传到另一个网站,我可以使用此代码建立连接

<cfftp action = "open"
username = "xxxx"
connection = "MyConnection"
password = "xxxx"
server = "xxx"
passive="yes"
secure="true">

但是当我尝试使用此代码放置文件时

<cfftp 
action="putFile"
connection="MyConnection"
localfile="xxx"
remotefile="xxx">

然后我收到此错误

An error occurred during the sFTP putFile operation. 
 Error: Permission denied. 

 The error occurred in xxxxx: line 13
11 :        connection="MyConnection"
12 :        localfile="xxxx"
13 :        remotefile="xxxx">

我可以通过filezilla上传其他背景信息。

1 个答案:

答案 0 :(得分:0)

我刚看了一段时间前我写的一些使用cfftp的代码,而我的remotefile包含完整路径。你可以确认你的吗?

如果尝试将其上传到错误的目录中,错误“权限被拒绝”将是有意义的。让我们知道你是怎么走的。