What is a directory?
a file system cataloging structure which contains references to other files, and possibly other directories.
What is a relative file path?
a file path that is relative to the current working directory. It specifies the location of a file in terms of the directory hierarchy, but it does not include the full path from the root of the file system.
What is an absolute file path?
a file path that specifies the full location of a file in the file system
What module does Node.js include for manipulating the file system?
fs (File System)