Java
Java
Remove a Remote FTP Directory (RMD)
See more FTP Examples
Demonstrates the Chilkat Ftp2.RemoveRemoteDir method, which removes a remote directory. The only argument is the remote directory path.
Background: Most FTP servers refuse to remove a directory that is not empty, so clearing a populated folder means deleting its contents first — or using
DeleteTree to clear the subtree and then removing the now-empty directory. After a removal, the cached indexed listing is not refreshed automatically; call ClearDirCache before relying on the old cache again.Chilkat Java Downloads
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
boolean success = false;
// Demonstrates the Ftp2.RemoveRemoteDir method, which removes a remote directory. The only
// argument is the remote directory path.
CkFtp2 ftp = new CkFtp2();
ftp.put_Hostname("ftp.example.com");
ftp.put_Username("myFtpLogin");
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
ftp.put_Password("myPassword");
success = ftp.Connect();
if (success == false) {
System.out.println(ftp.lastErrorText());
return;
}
success = ftp.ChangeRemoteDir("public_html");
if (success == false) {
System.out.println(ftp.lastErrorText());
return;
}
// FTP servers generally require the directory to be empty before it can be removed.
success = ftp.RemoveRemoteDir("uploads/old");
if (success == false) {
System.out.println(ftp.lastErrorText());
return;
}
System.out.println("Directory removed.");
success = ftp.Disconnect();
if (success == false) {
System.out.println(ftp.lastErrorText());
return;
}
}
}