卷曲上传:赠送文件不存在

时间:2017-03-17 20:38:18

标签: curl ftp upload

我正在尝试使用curl上传文件,但它说:

  

卷曲:(19)给定文件不存在

此错误消息与其与目标相关的源文件无关。我知道这一点,因为当我使用FileZilla在服务器上创建一个空文件然后上传它时,它完全正常。

我正在使用的命令:

curl -I --http1.0 -T "cache.txt" "ftp://user:passwd@fastdownload.nitrado.net/unturned/hash.php"

1 个答案:

答案 0 :(得分:0)

尝试使用cache.txt的完整路径,即:

curl -I --http1.0 -T "/full/path/to/cache.txt" "ftp://user:passwd@fastdownload.nitrado.net/unturned/hash.php"

另外,请确保您在unturned目录上拥有相应的权限。