Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.UploadFiles

TElSimpleFTPSClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Uploads one or more files to the server

Declaration

[C#]
    void UploadFiles(string LocalPath, string LocalMask, string RemotePath, TSBFileTransferMode Mode, bool CaseSensitive, TSBCaseConversion CaseConversion, bool Recursive);
    void UploadFiles(string LocalPath, string LocalMask, string RemotePath, TSBFileTransferMode Mode, TSBFileCopyMode CopyMode, bool CaseSensitive, TSBCaseConversion CaseConversion, bool Recursive);

[VB.NET]
    Sub UploadFiles(ByVal LocalPath As String, ByVal LocalMask As String, ByVal RemotePath As String, ByVal Mode As TSBFileTransferMode, ByVal CaseSensitive As Boolean, ByVal CaseConversion As TSBCaseConversion, ByVal Recursive As Boolean)
    Sub UploadFiles(ByVal LocalPath As String, ByVal LocalMask As String, ByVal RemotePath As String, ByVal Mode As TSBFileTransferMode, ByVal CopyMode As TSBFileCopyMode, ByVal CaseSensitive As Boolean, ByVal CaseConversion As TSBCaseConversion, ByVal Recursive As Boolean)

[Pascal]
    procedure UploadFiles(const LocalPath, LocalMask: string; const RemotePath: string; Mode: TSBFileTransferMode; CaseSensitive: boolean; CaseConversion: TSBCaseConversion; Recursive: boolean);
    procedure UploadFiles(const LocalPath, LocalMask: string; const RemotePath: string; Mode: TSBFileTransferMode; CopyMode: TSBFileCopyMode; CaseSensitive: boolean; CaseConversion: TSBCaseConversion; Recursive: boolean);

[C++]
    void UploadFiles(const std::string &LocalPath, const std::string &LocalMask, const std::string &RemotePath, TSBFileTransferMode Mode, bool CaseSensitive, TSBCaseConversion CaseConversion, bool Recursive);
    void UploadFiles(const std::string &LocalPath, const std::string &LocalMask, const std::string &RemotePath, TSBFileTransferMode Mode, TSBFileCopyMode CopyMode, bool CaseSensitive, TSBCaseConversion CaseConversion, bool Recursive);

[PHP]
    void UploadFiles(string $LocalPath, string $LocalMask, string $RemotePath, integer $Mode, bool $CaseSensitive, integer $CaseConversion, bool $Recursive)
    void UploadFiles(string $LocalPath, string $LocalMask, string $RemotePath, integer $Mode, integer $CopyMode, bool $CaseSensitive, integer $CaseConversion, bool $Recursive)

[Java]
    void uploadFiles(String LocalPath, String LocalMask, String RemotePath, TSBFileTransferMode Mode, boolean CaseSensitive, TSBCaseConversion CaseConversion, boolean Recursive);
    void uploadFiles(String LocalPath, String LocalMask, String RemotePath, TSBFileTransferMode Mode, TSBFileCopyMode CopyMode, boolean CaseSensitive, TSBCaseConversion CaseConversion, boolean Recursive);

Parameters

  • LocalPath - local path to search for files
  • LocalMask - the mask to match the local files to
  • RemotePath - the path to store the files
  • Mode - specifies what to do if the file with the same name already exists
  • CopyMode - specifies file copy mode.
  • CaseSensitive - specifies whether filename matching [to mask] is case-sensitive
  • CaseConversion - specifies whether case conversion must be applied to file names as they are uploaded
  • Recursive - specifies if the subdirectories should also be scanned for matching files

TSBFileTransferMode values

TSBFileCopyMode values:

TSBCaseConversion values:

Description

    Use this method to upload one or more file from the local disk (or in the virtual file system, when the appropriate file system adapter is set) to the server.
    Files are chosen by the mask which can be a simple mask, a set of masks, or a regular expression (read more about masks).
    Since SecureBlackbox version 13, file masks in group operations support expressions.

Discuss this help topic in SecureBlackbox Forum