Java tutorial
/* cursus - Race series management program Copyright 2014 Simon Arlott This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.spka.cursus.publish.website.ftp; import java.io.IOException; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.net.ftp.FTPFileFilter; import org.spka.cursus.publish.website.Constants; @SuppressWarnings("nls") public class ListFiles { private static final FTPFileFilter FILES_ONLY = new FTPFileFilter() { @Override public boolean accept(FTPFile file) { return file.isFile(); } }; private FileCache files; public ListFiles(FileCache files) { this.files = files; } public void from(FTPClient ftp) throws IOException { for (FTPFile file : ftp.listFiles(Constants.RESULTS_DIR, FILES_ONLY)) { files.put(Constants.RESULTS_DIR + "/" + file.getName(), null); } } }