FTPClient client = new FTPClient();
client.connect(Shared.getConfig("ftpBackupAddr"), Integer.parseInt(Shared.getConfig("ftpPort")));
client.login(Shared.getConfig("ftpBackupUser"), Shared.getConfig("ftpBackupPassword"));
client.changeDirectory("/" + Shared.getConfig("storeName"));
File f = new File(Constants.tmpDir + fileName);
client.upload(f);
client.disconnect(false);
}
static void sendSells(String myDay, ClosingDay cd , String ansMoney ) throws SQLException, IOException {