Actual errors are located here.
File system methods.
File cache.
Array of actual files and reverse indices pointing from files to index
Index pointing to files
Filters
Get file contents relative to system root directory.
Structure
files = [
{
file: actual_file,
rIndex: {
dir: "dirA",
file: "fileA"
}
},
{
file: actual_file_b,
rIndex: {
dir: "dirB",
file: "fileB"
}
}
]
index = {
"dirA": {
"FileA": file_entry_link_a
},
"dirB": {
"FileB": file_entry_link_b
}
}
Directory, relative to system root.
Filename.
Promise, containing string with file contents.
Get contents of yaml file relative to system root directory.
Directory, relative to system root.
Filename.
Promise, containing string with file contents..
// TODO: Switch to proper function Joins two paths.
Promise, containing string path.
List the contents of the folder, relative to system root directory.
Folder relative to system root.
Filter function.
Promise, containing an array of filtered strings - files/folders relative to system root.
Usage - List folders
systemInstance.private.file.list("css", systemInstance.private.file.filter.isDir);
// TODO: Switch to proper function Converts a file path to absolute operating system path. Used for external libraries, that require absolute path.
Relative directory to the root directory..
Folder/file name.
Promise, containing string relative path.
// TODO: Switch to proper function Converts absolute path to relative path.
Promise, containing string relative path.
Contains roles.
Subsystem.
Actual subsystems are located here.
Generated using TypeDoc
Contains system info.