out.println("Data quota: " + getDataQuotaAvailable());
byte[] buf = new byte[100000];
File file = null;
RobocodeFileOutputStream rfos = null;
try {
file = getDataFile("test");
out.println("Data file: " + file.getCanonicalPath());
file.delete();
rfos = new RobocodeFileOutputStream(file);
for (int i = 0; i < 3; i++) {
rfos.write(buf);
}
} catch (IOException e) {
e.printStackTrace(out);
} finally {
if (rfos != null) {
try {
rfos.close();
} catch (IOException e) {
e.printStackTrace(out);
}
}
if (file != null) {