diff --git a/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java b/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java index 3946e03..fc3206b 100644 --- a/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java +++ b/src/com/webcodepro/applecommander/storage/os/prodos/ProdosDirectoryEntry.java @@ -96,6 +96,6 @@ public class ProdosDirectoryEntry extends ProdosFileEntry implements DirectoryEn * @see com.webcodepro.applecommander.storage.DirectoryEntry#createDirectory() */ public DirectoryEntry createDirectory() throws DiskFullException { - throw new UnsupportedOperationException(textBundle.get("DirectoryCreationNotSupported")); //$NON-NLS-1$ + return getDisk().createDirectory(); } }