Sample code for 30+ languages & platforms
Swift

Upload Multiple FTP Files by Wildcard (MPUT)

See more FTP Examples

Demonstrates the Chilkat Ftp2.MPutFiles method, which uploads each local file matching a pattern to the current remote directory. The only argument is the local pattern, which may include a directory and wildcard. It returns the number of files uploaded, or -1 on failure.

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: The upload counterpart to MGetFiles — FTP's mput. The wildcard is matched against the local filesystem, and every match is sent to the current remote directory; subdirectories are not traversed, so use PutTree for a recursive upload. As with MGetFiles, the return distinguishes a genuine failure (-1) from simply matching nothing.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    //  Demonstrates the Ftp2.MPutFiles method, which uploads each local file matching a pattern to the
    //  current remote directory.  The only argument is the local pattern (which may include a
    //  directory and wildcard).  It returns the number of files uploaded, or -1 on failure.

    let ftp = CkoFtp2()!

    ftp.hostname = "ftp.example.com"
    ftp.username = "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.
    ftp.password = "myPassword"

    success = ftp.connect()
    if success == false {
        print("\(ftp.lastErrorText!)")
        return
    }

    success = ftp.changeRemoteDir(relativeDirPath: "public_html")
    if success == false {
        print("\(ftp.lastErrorText!)")
        return
    }

    //  Upload all .html files from a local directory.  Subdirectories are not traversed.
    var numUploaded: Int = ftp.mPutFiles(pattern: "qa_data/site/*.html").intValue
    if numUploaded < 0 {
        print("\(ftp.lastErrorText!)")
        return
    }

    print("Uploaded \(numUploaded) files.")

    success = ftp.disconnect()
    if success == false {
        print("\(ftp.lastErrorText!)")
        return
    }


}