01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.io;
05:
06: import java.io.File;
07: import java.io.IOException;
08:
09: public interface TCFile {
10:
11: public TCFile createNewTCFile(TCFile location, String fileName);
12:
13: public boolean exists();
14:
15: public void forceMkdir() throws IOException;
16:
17: public File getFile();
18:
19: public boolean createNewFile() throws IOException;
20:
21: }
|