Example usage for org.apache.commons.net.ftp FTPCommand APPE

List of usage examples for org.apache.commons.net.ftp FTPCommand APPE

Introduction

In this page you can find the example usage for org.apache.commons.net.ftp FTPCommand APPE.

Prototype

int APPE

To view the source code for org.apache.commons.net.ftp FTPCommand APPE.

Click Source Link

Usage

From source file:org.openconcerto.ftp.IFtp.java

public boolean appendFile(String remote, InputStream local) throws IOException {
    return __storeFile(FTPCommand.APPE, remote, local);
}