A file path is both the route you take to get to a file and the way your computer names files. A file’s real name isn’t just what you enter when you save the file. You’re essentially giving it a first name, but it also has a last name that includes every folder it is nested in. Here's an example:
File name (first name): “draft.docx”
Nested folders (last name):“User/doyleowl/Documents/Ornithology"
Full name: “User/doyleowl/Documents/Ornithology/draft.docx”
When we list the nested folders we list the outermost folder first and every subsequent folder is inside the preceeding folder. We use "/" to separate the folder names. In this example, our file is inside a folder called Ornithology, which is inside Documents, which is inside our username folder called doyleowl, which is inside the base folder User. To go back to the filing cabinet analogy, the User folder is like the room that all the filing cabinets are stored in. Unless you're doing major construction, you don't need to do anything on the room level. The folder for your username is like having your personal cabinet inside that room; in fact this folder is generally called your "home" folder. For most computing you are unlikely to need to use folders that are outside of your home folder. Because of this, the beginnings of file paths are always the same and then they become more variable as they get more specific.
In the image at the top of this page, the file path for File1 would be "Yellow/Blue/File1" because the file is inside the blue folder which is inside the yellow folder. Full file paths end in an extension, which describes the type of file. If File1 is a Word document, the full path would be "Yellow/Blue/File1.docx", or if it is an Excel spreadsheet it would be "Yellow/Blue/File1.xlsx".
If you are referencing a file you will need to include the extension otherwise your computer will think you are looking for a folder. You can have files in same folder with the same name, so long as they have different extensions. For example, we could save the draft document as a PDF and it would create a new file whose full path would be “User/doyleowl/Documents/Ornithology/draft.pdf”. The extension for your file may not always be visible, sometimes you may just see "draft", but even if it isn't displayed the extension is always there and is included in the full path.
If you are coding or using specific software, you will likely need to know a full path for your file. But more commonly what would be useful to you is just to know the general route you need to click through to get to your file. In your Documents folder, you might have files for each class you are in and inside those folders you may have folders for each week or each assignment. When you download any new files, you should move them to your organized folders so that you know the path to take to find the file even if you forgot what you named it.