package fileutils

  1. Overview
  2. Docs

Module FileUtilMKDIRSource

Sourceexception MkdirError of string
Sourcetype mkdir_error = [
  1. | `DirnameAlreadyUsed of FilePath.filename
  2. | `Exc of exn
  3. | `MissingComponentPath of FilePath.filename
  4. | `MkdirChmod of FilePath.filename * Unix.file_perm * string * FileUtilMisc.exc
]
Sourceval mkdir : ?error: (string -> [ `DirnameAlreadyUsed of FilePath.filename | `Exc of exn | `MissingComponentPath of FilePath.filename | `MkdirChmod of FilePath.filename * Unix.file_perm * string * FileUtilMisc.exc ] -> unit) -> ?parent:bool -> ?mode:[< `Octal of Unix.file_perm | `Symbolic of FileUtilMode.t ] -> FilePath.filename -> unit