我正在使用 psftp 的 put 命令上传文件。假设文件将以相同的名称复制,我没有在目标位置提供文件名。这是 put 命令的帮助页面
psftp> help put
put [ -r ] [ -- ] <filename> [ <remote-filename> ]
Uploads a file to the server and stores it there under
the same name, or under a different one if you supply the
argument <remote-filename>.
If -r specified, recursively store a directory.
如果我尝试在目标位置使用不带文件名的 PUT,psftp 会抛出错误open for write: failure
psftp> open user@host
Using username "user".
Remote working directory is /
psftp> put <file_name> ./<dir>/
/<dir>: open for write: failure
而如果我在目标位置提供文件名,它可以工作
psftp> put <file_name> ./<dir>/<file_name>
local:<file_name> => remote:/<dir>/<file_name>
为什么 PUT 命令需要目标位置的文件名?