Module 7

What is a path?

How to find a file.

The address of a file

A path is the address of a file. It describes where the file is located, starting from a folder and navigating through subfolders.

PythonTwo example paths.
# Examples of paths:
# data/sequences.fasta
# /home/user/project/results.csv

What is a path?