Sample code for 30+ languages & platforms
Swift

Create Directory on FTP Server

See more FTP Examples

_LANGUAGE_ example showing how to create a new directory on an FTP site.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let ftp = CkoFtp2()!

    ftp.hostname = "ftp.example.com"
    ftp.username = "login"
    ftp.password = "password"

    // Connect and login to the FTP server.
    success = ftp.connect()
    if success != true {
        print("\(ftp.lastErrorText!)")
        return
    }

    // Create a new directory on the FTP server:
    success = ftp.createRemoteDir(dir: "newDirName")
    if success != true {
        print("\(ftp.lastErrorText!)")
        return
    }

    success = ftp.disconnect()

}