Process Overview
A folder hierarchy is like a family tree for your computer files. It shows how folders (also called directories) are organized inside one another. Paths tell you exactly where a file or folder lives in this tree, like an address.
Jump into concepts and practice - no test required
A folder hierarchy is like a family tree for your computer files. It shows how folders (also called directories) are organized inside one another. Paths tell you exactly where a file or folder lives in this tree, like an address.
Root
|
+-- home
|
+-- user
|
+-- docs
|
+-- file.txt
Root/
FolderA/
File1.txt
FolderB/
File2.txt
Root/FolderA, what file does the relative path ../FolderB/File2.txt point to?/home/user/docs: ../../user/docs/file.txt
Project/
src/
main.py
data/
input.csv
Project/src, which relative path correctly accesses input.csv?