/// @throws IOError If operation failed
public static final Object[] p_append = { null, "filename" };
public Any m_append(Context context, String filename)
{
try {
return new AnyOutputStream(_client.append(filename));
} catch (IOException e) {
throw context.exception(e);
}
}