Istari

Path

Library for manipulating Unix paths. Windows paths are not supported, except for conversion to and from Unix paths.

signature PATH =
   sig

      exception Path

      val explode : string -> string list
      val implode : string list -> string

      val canonize : string -> string

      val isAbsolute : string -> bool
      val isRelative : string -> bool
      val hasPath : string -> bool

      val makeAbsolute : string -> string -> string
      val join : string -> string -> string
      val split : string -> string * string

      val joinExt : string -> string -> string
      val splitExt : string -> (string * string) option

      val toWindowsPath : string -> string
      val fromWindowsPath : string -> string

      val toNativePath : string -> string
      val fromNativePath : string -> string

      val fromHybridPath : string -> string

   end

structure Path : PATH

Windows paths as Unix paths

For relative paths, the only difference between a Unix and Windows path is the separator (/ versus \). For absolute paths, a Windows path has a volume id (e.g. c:) whereas a Unix path does not. We view the Windows volume id as a subdirectory of the root. Thus, the Windows path c:\a\b is represented by the Unix path /c:/a/b.

Unix paths are used consistently throughout IML and Istari, except for Istari’s command-line arguments and environment variables, which accept hybrid paths.

Hybrid paths

A hybrid path can use either separator, / or \. The symbol \ cannot be used except as a separator, even though Unix paths permit it. The path may begin with a volume id or not; if it does, it is interpreted as above.

Hybrid paths are designed to accept valid Unix paths (provided they do not use \, nor use : in a way that looks like a volume id) and also valid Windows paths (provided they include a volume id if they are absolute).