diff --git a/src/com/webcodepro/applecommander/storage/FormattedDisk.java b/src/com/webcodepro/applecommander/storage/FormattedDisk.java index b337edc..a2a4157 100644 --- a/src/com/webcodepro/applecommander/storage/FormattedDisk.java +++ b/src/com/webcodepro/applecommander/storage/FormattedDisk.java @@ -141,7 +141,12 @@ public abstract class FormattedDisk extends Disk { * Retrieve a list of files. */ public abstract List getFiles(); - + + /** + * Create a new FileEntry. + */ + public abstract FileEntry createFile() throws DiskFullException; + /** * Identify the operating system format of this disk. */