我正在尝试创建一个bat文件,将最新文件从文件夹上传到公共html。这该怎么做?我现在让这个工作了。
c:pscp -pw password c:\index.html user@host:public_html/index.html
答案 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