PSCP自动上传最新文件

时间:2016-07-31 12:45:20

标签: pscp

我正在尝试创建一个bat文件,将最新文件从文件夹上传到公共html。这该怎么做?我现在让这个工作了。

c:pscp -pw password c:\index.html user@host:public_html/index.html

1 个答案:

答案 0 :(得分:0)

知道了:

set source="C:\dir"
FOR /F "delims=|" %%I IN ('DIR %source% /B /O:D') DO SET NewestFile=%%I

c:pscp -pw password %source%\%NewestFile% user@host:public_html/%NewestFile%

pause