node-fs-readfile Flashcards
1
Q
What is a directory?
A
a file system cataloging structure which contains references to other files, and possibly other directories.
2
Q
What is a relative file path?
A
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.
3
Q
What is an absolute file path?
A
a file path that specifies the full location of a file in the file system
4
Q
What module does Node.js include for manipulating the file system?
A
fs (File System)