// transfer data
boolean failure = false;
OutputStream outStream = null;
try {
outStream = file.createOutputStream(skipLen);
long transSz = dataConnection.transferFromClient(session.getFtpletSession(), outStream);
// attempt to close the output stream so that errors in
// closing it will return an error to the client (FTPSERVER-119)
if(outStream != null) {
outStream.close();