Istari

FileSystem

A threadbare set of file system primitives.

signature FILE_SYSTEM =
   sig

      exception FileSystem of string

      val chDir : string -> unit
      val getDir : unit -> string

      val exists : string -> bool
      
      val isDir : string -> bool

      val remove : string -> unit

   end

structure FileSystem : FILE_SYSTEM

File names are always represented as Unix paths, regardless of the platform.