Base OS
Procs | |
closed_connection | Called by the mainframe upon termination of a connection, conn is deleted afterwards |
---|---|
file_term | Pass a file to the connected terminal. |
message_term | Pass a message to the connected terminal. |
new_connection | Called by the mainframe when a new terminal connection is made so as to alert the OS |
parse_datum_directory | Parse the provided filesystem for a folder or file located at a specified filepath. |
parse_directory | Parse the provided filesystem for a folder located at a specified filepath. |
parse_file_directory | Parse the provided filesystem for a file located at a specified filepath. |
ping_reply | Called when a reply ping is received by the mainframe. |
term_input | Data sent to the program by a connected terminal. If a file is passed, note that the file will be treated as temporary and deleted after the function returns. |
Proc Details
closed_connection
Called by the mainframe upon termination of a connection, conn is deleted afterwards
file_term
Pass a file to the connected terminal.
message_term
Pass a message to the connected terminal.
new_connection
Called by the mainframe when a new terminal connection is made so as to alert the OS
parse_datum_directory
Parse the provided filesystem for a folder or file located at a specified filepath.
string
: The filepath to parse. Special prefixes:/
: Start the search at the origin point..
: Start the search at the current folder...
: Start the search at the parent folder.
origin
: The root folder.create_if_missing
: Whether intermediary folders in the path should be created if not present.user
: If a user is specified, all files and folders are filtered by the access permissions of the user.
parse_directory
Parse the provided filesystem for a folder located at a specified filepath.
string
: The filepath to parse. Special prefixes:/
: Start the search at the origin point..
: Start the search at the current folder...
: Start the search at the parent folder.
origin
: The root folder.create_if_missing
: Whether intermediary folders in the path should be created if not present.user
: If a user is specified, all files and folders are filtered by the access permissions of the user.
parse_file_directory
Parse the provided filesystem for a file located at a specified filepath.
string
: The filepath to parse. Special prefixes:/
: Start the search at the origin point..
: Start the search at the current folder...
: Start the search at the parent folder.
origin
: The root folder.create_if_missing
: Whether intermediary folders in the path should be created if not present.user
: If a user is specified, all files and folders are filtered by the access permissions of the user.
ping_reply
Called when a reply ping is received by the mainframe.
term_input
Data sent to the program by a connected terminal. If a file is passed, note that the file will be treated as temporary and deleted after the function returns.