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

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

Introduction

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

Prototype

int STOU

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

Click Source Link

Usage

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

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

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

public boolean storeUniqueFile(InputStream local) throws IOException {
    return __storeFile(FTPCommand.STOU, null, local);
}