(Swift) Rename Remote File
Rename a remote file or directory. The RenameRemoteFile can be called to rename either a remote file or 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
}
// Set the current remote directory to where the file
// is located:
success = ftp.changeRemoteDir("/testing")
if success != true {
print("\(ftp.lastErrorText!)")
return
}
// Rename the remote file (or directory)
var existingFilename: String? = "hello.txt"
var newFilename: String? = "goodbye.txt"
success = ftp.renameRemoteFile(existingFilename, newFilename: newFilename)
if success != true {
print("\(ftp.lastErrorText!)")
return
}
success = ftp.disconnect()
}
|