package frama-c

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

Handle the specific `session' directory of the plug-in.

  • since Neon-20140301

Sets the plugin <specific-dir> directory (without creating it).

  • returns

    the plugin <specific-dir> directory (without creating it).

val is_set : unit -> bool
  • returns

    whether the plugin <specific-dir> has been set.

val get_dir : ?mode:[ `Normalize_only | `Create_path | `Must_exist ] -> string -> Frama_c_kernel.Filepath.Normalized.t

get_dir ?mode p returns a (local) path p, i.e. relative to the plugin <specific-dir> directory, of a sub-directory of the plugin <specific-dir> directory.

  • parameter mode

    determines how to handle the resulting path:

    1. Normalize_only just normalizes the resulting path (default).
    2. Create_path creates the resulting path, if does not exist.
    3. Must_exist aborts if the resulting path does not exist.
val get_file : ?mode:[ `Normalize_only | `Create_path | `Must_exist ] -> string -> Frama_c_kernel.Filepath.Normalized.t

get_file ?mode p returns a (local) path p, i.e. relative to the plugin <specific-dir> directory, of a file in the plugin <specific-dir> directory.

  • parameter mode

    determines how to handle the resulting path:

    1. Normalize_only just normalizes the resulting path (default).
    2. Create_path creates the dirname of resulting path, if does not exist.
    3. Must_exist aborts if the resulting path does not exist.