(Swift) Move File to Another Directory on Server
Moves a file from one directory to another. This is accomplished by renaming the file using a filepath that includes the directory.
func chilkatTest() {
// 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.
var success: Bool = 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(existingFilepath, newFilename: newFilepath)
if success != true {
print("\(ftp.lastErrorText!)")
return
}
success = ftp.disconnect()
}
|