PureBasic
PureBasic
Filter Files and Directories in an FTP Sync
See more FTP Examples
Demonstrates the synchronization filter properties SyncMustMatch, SyncMustNotMatch, SyncMustMatchDir, SyncMustNotMatchDir, and SyncCreateAllLocalDirs.
Note: The local paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: A real sync rarely wants every file. These semicolon-separated wildcard filters shape the set: the
MustMatch pairs include only matching files/directories, while the MustNotMatch pairs exclude them — letting you, say, publish only web assets while skipping build artifacts and caches. Directory filters also prune traversal, avoiding wasted time descending into folders you do not need. They apply to the tree-sync methods such as SyncLocalTree and SyncRemoteTree.Chilkat PureBasic Downloads
IncludeFile "CkFtp2.pb"
Procedure ChilkatExample()
success.i = 0
ftp.i = CkFtp2::ckCreate()
If ftp.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkFtp2::setCkHostname(ftp, "ftp.example.com")
CkFtp2::setCkUsername(ftp, "myFtpLogin")
; Normally you would not hard-code the password in source. You should instead obtain it
; from an interactive prompt, environment variable, or a secrets vault.
CkFtp2::setCkPassword(ftp, "myPassword")
success = CkFtp2::ckConnect(ftp)
If success = 0
Debug CkFtp2::ckLastErrorText(ftp)
CkFtp2::ckDispose(ftp)
ProcedureReturn
EndIf
success = CkFtp2::ckChangeRemoteDir(ftp,"public_html")
If success = 0
Debug CkFtp2::ckLastErrorText(ftp)
CkFtp2::ckDispose(ftp)
ProcedureReturn
EndIf
; Include only files matching these semicolon-separated, case-insensitive wildcard patterns.
CkFtp2::setCkSyncMustMatch(ftp, "*.html;*.css;*.js")
; Exclude files matching these patterns, even if they matched SyncMustMatch.
CkFtp2::setCkSyncMustNotMatch(ftp, "*.tmp;*.bak")
; Restrict which directories are traversed (and which are skipped) during a tree sync.
CkFtp2::setCkSyncMustMatchDir(ftp, "assets;pages")
CkFtp2::setCkSyncMustNotMatchDir(ftp, "cache;node_modules")
; For a download sync, create empty remote directories on the local side too.
CkFtp2::setCkSyncCreateAllLocalDirs(ftp, 1)
; The filters apply to the tree sync operations, such as SyncLocalTree.
mode.i = 6
success = CkFtp2::ckSyncLocalTree(ftp,"qa_output/site",mode)
If success = 0
Debug CkFtp2::ckLastErrorText(ftp)
CkFtp2::ckDispose(ftp)
ProcedureReturn
EndIf
Debug "Filtered sync complete."
success = CkFtp2::ckDisconnect(ftp)
If success = 0
Debug CkFtp2::ckLastErrorText(ftp)
CkFtp2::ckDispose(ftp)
ProcedureReturn
EndIf
CkFtp2::ckDispose(ftp)
ProcedureReturn
EndProcedure