problem with filemask
Hi
I'm trying to use command line winscp to copy a folder to a server, excluding svn files.
No matter what I set the filemask to, no files get uploaded (things work fine without the filemask, so never mind the tokens).
Ideally, I would like to exclude everything beginning with "." - I tried .* as filemask, is that right?
I also tried
it seems to recognize the option - console prints "confirm off, include |.svn"
So exclude turns to include and again nothing gets uploaded
Using latest version 5.0.7 (build 2268)
I'm trying to use command line winscp to copy a folder to a server, excluding svn files.
@echo off set winscp="c:\Program Files (x86)\winscp\winscp.exe" ... %winscp% mysite /console /command "option confirm off" "put -filemask=.svn %localfolder% %remotefolder% " "exit"
Ideally, I would like to exclude everything beginning with "." - I tried .* as filemask, is that right?
I also tried
%winscp% mysite /console /command "option confirm off" "option exclude .svn" "put %localfolder% %remotefolder% " "exit"
So exclude turns to include and again nothing gets uploaded
Using latest version 5.0.7 (build 2268)