Sample code for 30+ languages & platforms
Go

Delete Remote File

See more FTP Examples

Delete a remote file.

Chilkat Go Downloads

Go
    success := false

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

    ftp := chilkat.NewFtp2()

    ftp.SetHostname("ftp.chilkatsoft.com")
    ftp.SetUsername("myLogin")
    ftp.SetPassword("myPassword")

    // Connect and login to the FTP server.
    success = ftp.Connect()
    if success != true {
        fmt.Println(ftp.LastErrorText())
        ftp.DisposeFtp2()
        return
    }

    // Set the current remote directory to where the file
    // is located:
    success = ftp.ChangeRemoteDir("/testing")
    if success != true {
        fmt.Println(ftp.LastErrorText())
        ftp.DisposeFtp2()
        return
    }

    success = ftp.DeleteRemoteFile("goodbye.txt")
    if success != true {
        fmt.Println(ftp.LastErrorText())
        ftp.DisposeFtp2()
        return
    }

    success = ftp.Disconnect()

    ftp.DisposeFtp2()