Sample code for 30+ languages & platforms
Swift

Move File to Another Directory on Server

See more FTP Examples

Moves a file from one directory to another. This is accomplished by renaming the file using a filepath that includes the directory.

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
    }

    // Rename the remote file (or directory)
    var existingFilepath: String? = "dirA/hello.txt"
    var newFilepath: String? = "dirB/hello.txt"
    success = ftp.renameRemoteFile(existingFilename: existingFilepath, newFilename: newFilepath)
    if success != true {
        print("\(ftp.lastErrorText!)")
        return
    }

    success = ftp.disconnect()

}