Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Include/Exclude specific File using synchronize with -filema

The option exclude is deprecated and replaced by -filemask.

You can combine both exclude and include mask in -filemask:
https://winscp.net/eng/docs/file_mask#include_exclude

Actually you are doing it already, so I do not see a point of the question.

Use -filemask="*.exe>1D|archive/;BFFXA018.exe;CFFXA016.exe"
solicom

Include/Exclude specific File using synchronize with -filema

Hello,

is it possible to Include or Exclude some specific Files before using synchronize with -filemask ??

EX:

I want to exclude some specific files before getting synchronized to avoid them to be uploaded, for this example if exist BFFXA018.exe or CFFXA016.exe, they shouldnt be synchronized even the filemask is set for *.exe

CODE:

option echo on
option batch on
# Disable overwrite confirmations that conflict with the previous
option confirm off
option exclude "BFFXA018.exe;CFFXA016.exe; /*"
# Connect to FTP
# Synchronize DIAGS
synchronize local -filemask="*.exe>1D|archive/" D:\fsdash\diags\SYNCdev\bin\temp\SYNC /diags/SYNC
exit


THX