What is a directory?
A grouping of files into separate collections.
What is a relative file path?
Relative paths are relative to the current working directory and begin with a dot (./)
What is an absolute file path?
An absolute file path starts at the root directory, which begins with a forward slash (/).
What module does Node.js include for manipulating the file system?
The fs module, which is called using the require function with the argument ‘fs’ passed in.