Delete file from FTP server : Ftp « Network Protocol « Java






Delete file from FTP server

 

import org.apache.commons.net.ftp.FTPClient;
import java.io.IOException;

public class Main {
  public static void main(String[] args) {
    FTPClient client = new FTPClient();

    client.connect("ftp.domain.com");
    client.login("admin", "secret");
    String filename = "/testing/data.txt";
    boolean deleted = client.deleteFile(filename);
    if (deleted) {
      System.out.println("File deleted...");
    }

    client.logout();
    client.disconnect();
  }
}
 

   
  








Related examples in the same category

1.Upload file to FTP server
2.Connect to FTP server
3.Get list of files from FTP server
4.Download file from FTP server
5.Running the edtFTPj demo
6.Implements a Java FTP client from socket and RFC
7.Graphical Ftp clientGraphical Ftp client
8.Ftp client demonstration
9.Ftp client gets server file size
10.Establish ftp connection
11.Use the FTP Client
12.Use the FTPClient: server file transfer
13.A simple Java tftp client