您好我在通过winscp使用sftp将所有以.txt结尾的文件传输到远程服务器上的目录。我遇到的问题是我在文件上收到权限和时间戳的错误。
我正在尝试将两个开关添加到put命令" -nopreservetime -nopermissions"但我不确定正确的顺序。
open sftp://username:password@myftp.com/ -hostkey="ssh-dss 1024 95:98:cb:3c:90:7b:bf:b4:3f:c3:72:b5:04:2b:b2:39" -rawsettings FSProtocol=2
# Change the Local Directory
lcd "F:\Heartland"
# Change to the correct Remote directory
cd "/Distribution/Positive Pay1"
# List the local files
lls
# List Remote Files
ls
# Upload *.txt
put -nopreservetime -nopermissions "*.txt"
# Disconnect
close
exit