plebeia
-
plebeia
-
-
plebeia.msync
-
plebeia.test_utils
-
Library
Module
Module type
Parameter
Class
Class type
Monad for synchronous file system operations
val raw_cursor : raw_cursor t
Get the current underlying cursor
val chdir_parent : unit t
Moves the cursor up 1 directory level. If the cursor is already at the root, it does nothing.
val chdir_root : unit t
Moves the cursor up to the root directory. If the cursor is already at the root, it does nothing.
Moves the cursor to a sub-directory specified by the path. If dig=true
, subdirectories are created if necessary.
File and directory access. It returns the current cursor and its view.
set path cursor
sets the tree pointed by the cursor
at the specified path.
The path must not be empty.
copy src dst
sets the tree at src
to dst
. dst
must not be empty.
Create or update a regular file. Directories are created if necessary. The path must not be empty.
Remove a regular file or a directory, then returns Ok true
. The path must not be empty.
recursive=false : fails when the target is a directory recursive=true : removes the target recursively if it is a directory ignore_error=false : fails when the target does not exist ignore_error=true : does not fail even if the target does not exist
Returns true
if the target is really removed. Returns false
if the target does not exist.
Recursive removal of a directory The path must not be empty.
ignore_error=false : fails when the target does not exist ignore_error=true : does not fail even if the target does not exist
Returns true
if the target is really removed. Returns false
if the target does not exist.
val may_forget : unit t
Clear the memory cache of the tree under the current cursor, if it is already persisted on the disk.