public OutputStream appendFile(FileEntry file) {
try {
File f = new File(FileSystemTools.getAbsolutePath(file, basePath));
return new FileOutputStream(f, true);
} catch (FileNotFoundException ex) {
throw new FileSystemException("Could not append to the file", ex);
}
}