我希望文件自动传输到一台服务器到另一台服务器。为此,我已经安装了腻子。
批处理文件:Transfer.Bat
cd "C:\Program Files\PuTTY"
psftp Username@RemoteServer.com -pw password -b MovementFileTransferScript.txt -be
文本文件:MovementFileTransferScript.txt
open RemoteServer.com
put D:/Backup/FULL_DB_BACKUP-DontDelete.txt R:\DB\Backup
quit
在上面的文本文件中,D:/属于源服务器,R:/属于目标服务器。
当我运行批处理文件时,我收到以下错误。
Using username "Username".
Remote working directory is /
psftp: already connected
local: unable to open D:/Backup/FULL_DB_BACKUP-DontDelete.txt
我检查了文件夹的权限,一切看起来都不错。有人可以告诉我这里的问题是什么。?