Module OS.Dir
Directory operations.
Existence and contents
val exists : fpath -> bool resultexists diristrueif directorydirexists in the file system. Symbolic links are followed.
val must_exist : fpath -> fpath resultmust_exist dirisdiriffileis a regular file in the file system and an error otherwise. Symbolic links are followed.
val contents : ?dotfiles:bool -> ?rel:bool -> fpath -> fpath list resultcontents ~dotfiles ~rel diris the list of directories and filse indir. Ifrelistrue(defaults tofalse) the resulting paths are relative todir, otherwise they havedirprepended. Ifdotfilesisfalse(default) elements that start with a.are omitted.