mount

Attaches the filesystem specified by source.

void
mount
(
string source
,
string target
,
string fs
,
ulong flags = 0
,
void* data = null
)

Parameters

source string

Filesystem source.

target string

Location for mounting.

fs string

Filesystem type, supported values are listed in "/proc/filesystems".

flags ulong

Additional mount flags. Zero, by default.

data void*

Special data for required filesystem. Null pointer, by default.

See also: man 2 mount

Meta