SCM Repository
View of /sml/trunk/src/smlnj-lib/Unix/unix-path-sig.sml
Parent Directory
|
Revision Log
Revision 9 -
(download)
(annotate)
Sun Jan 18 01:01:29 1998 UTC (23 years, 3 months ago) by monnier
File size: 960 byte(s)
Sun Jan 18 01:01:29 1998 UTC (23 years, 3 months ago) by monnier
File size: 960 byte(s)
This commit was generated by cvs2svn to compensate for changes in r8, which included commits to RCS files with non-trunk default branches.
(* unix-path-sig.sml * * COPYRIGHT (c) 1993 by AT&T Bell Laboratories. See COPYRIGHT file for details. * * AUTHOR: John Reppy and Emden Gansner * AT&T Bell Laboratories * Murray Hill, NJ 07974 * jhr@research.att.com * erg@research.att.com *) signature UNIX_PATH = sig type path_list val getPath : unit -> path_list (* get the user's PATH environment variable. *) datatype access_mode = datatype OS.FileSys.access_mode datatype file_type = F_REGULAR | F_DIR | F_SYMLINK | F_SOCK | F_CHR | F_BLK (** what is the type in POSIX??? **) exception NoSuchFile val findFile : (path_list * access_mode list) -> string -> string val findFiles : (path_list * access_mode list) -> string -> string list val findFileOfType : (path_list * file_type * access_mode list) -> string -> string val findFilesOfType : (path_list * file_type * access_mode list) -> string -> string list end (* UNIX_PATH *)
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |