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

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

Introduction

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

Prototype

int STOR

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

Click Source Link

Usage

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

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