Module coroutines

Source
Expand description

Collection of I/O-free, resumable and composable filesystem state machines.

Coroutines emit I/O requests that need to be processed by runtimes in order to continue their progression.

Modulesยง

create_dir
I/O-free coroutine to create a filesystem directory.
create_dirs
I/O-free coroutine to create multiple filesystem directories.
create_file
I/O-free coroutine to create a filesystem file.
create_files
I/O-free coroutine to create multiple filesystem files.
read_dir
I/O-free coroutine to read entries contained inside a filesystem directory.
read_file
I/O-free coroutine to read filesystem file contents.
read_files
I/O-free coroutine to read multiple filesystem files contents.
remove_dir
I/O-free coroutine to remove a filesystem directory.
remove_dirs
I/O-free coroutine to remove multiple filesystem directories.
remove_file
I/O-free coroutine to remove a filesystem file.
remove_files
I/O-free coroutine to remove multiple filesystem files.
rename
I/O-free coroutine to rename multiple filesystem files and/or directories.