package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Functions on paths that are represented as strings

type mkdir_p =
  1. | Already_exists
    (*

    The path already exists. No action was taken

    *)
  2. | Created
    (*

    The directory was created.

    *)

Represent the result of mkdir_p

val mkdir_p : ?perms:int -> string -> mkdir_p
val initial_cwd : string