Oops.. found the error, of course it was my fault,. A " Sign had disappeared!
:oops:
:oops:
winscp.com
, like:
"C:\Program Files (x86)\WinSCP\WinSCP.com" /command ...
"moves the download": Where should it move the downloads to? Upload them somewhere?
Regarding the%F
and%D
:
If you call a batch file in the uTorrent like this:upload.bat "%D" "%F"
; then in the batch file, you can pass the information to the WinSCP like:
@echo off
set DIR=%1
set FILE=%2
echo Uploading %DIR%\%FILE%
winscp.com /command ^
"open ..." ^
"put ""%DIR%\%FILE%"" ""/remote/path/""" ^
"exit"
(not tested)
%F
and %D
:
upload.bat "%D" "%F"
; then in the batch file, you can pass the information to the WinSCP like:
@echo off
set DIR=%1
set FILE=%2
echo Uploading %DIR%\%FILE%
winscp.com /command ^
"open ..." ^
"put ""%DIR%\%FILE%"" ""/remote/path/""" ^
"exit"