Class FileSys

java.lang.Object
  |
  +--FileSys

public class FileSys
extends java.lang.Object

The FileSys class represents the file subsystem of an operating system.

In reality, all files in this file subsytem are executable images.


Method Summary
static Image getFile(java.lang.String nm)
          FileSys.getFile(nm) returns the file named nm.
static java.util.Enumeration getFileNames()
          FileSys.getFileNames() returns an enumeration of the names of all files in the file system.
static void putFile(java.lang.String nm, Image im)
          FileSys.putFile(nm, im) creates a file named nm with contents im.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getFile

public static Image getFile(java.lang.String nm)
FileSys.getFile(nm) returns the file named nm.


getFileNames

public static java.util.Enumeration getFileNames()
FileSys.getFileNames() returns an enumeration of the names of all files in the file system.


putFile

public static void putFile(java.lang.String nm,
                           Image im)
FileSys.putFile(nm, im) creates a file named nm with contents im.